siège social

This commit is contained in:
Carmen Ngaka Iziasuma 2023-11-24 13:28:31 +01:00
parent bc590c0f37
commit 387b81c894
2 changed files with 22 additions and 12 deletions

View File

@ -1,7 +1,15 @@
---
title: "Contact"
draft: false
adresse: 3 rue Raoul Dufy 75020 Paris
adresses:
- type: Adresse Postale
adresse: |
3 rue Raoul Dufy
75020 Paris
- type: Siège social
adresse: |
Pors Al Louch
29430 Pounevez-Louchrist
email: cie@ltqf.fr
telephone:
- +33 6 63 91 23 46

View File

@ -17,24 +17,26 @@
<section class="hero pt-5 pb-0 is-fullheight">
<div class="container m-0">
<h1 class="is-size-1 title has-text-weight-bold has-text-centered ">{{ .Title }}</h1>
<div class="columns mt-2">
<div class="column is-flex-mobile is-flex-direction-row has-text-centered is-align-items-center">
<i class="fa-solid fa-location-dot fa-3x mb-5"></i>
<h2 class="title is-3 has-text-white is-hidden-mobile">Adresse:</h2>
<p class="subtitle is-5 has-text-white">{{ .Params.adresse }}</p>
<div class="columns my-2 mx-5 is-justify-content-space-between">
{{ range .Params.adresses }}
<div class="column is-narrow p-0 is-flex-mobile is-flex-direction-row has-text-centered is-align-items-center">
<i class="fa-solid fa-location-dot fa-3x mb-5"></i>
<h2 class="title is-4 has-text-white is-hidden-mobile">{{.type}}</h2>
<p class="subtitle is-6 has-text-white">{{ .adresse | markdownify}}</p>
</div>
<div class="column is-flex-mobile is-flex-direction-row has-text-centered is-align-items-center">
{{ end }}
<div class="column is-narrow p-0 is-flex-mobile is-flex-direction-row has-text-centered is-align-items-center">
<i class="fa-solid fa-envelope fa-3x mb-5"></i>
<h2 class="title is-3 has-text-white is-hidden-mobile">Email:</h2>
<p class="subtitle has-text-white">
<h2 class="title is-4 has-text-white is-hidden-mobile">Email:</h2>
<p class="subtitle is-6 has-text-white">
<a href="mailto:{{ .Params.email }}" class="has-text-white">{{ .Params.email }}</a>
</p>
</div>
<div class="column is-flex-mobile is-flex-direction-row has-text-centered is-align-items-center">
<div class="column is-narrow p-0 is-flex-mobile is-flex-direction-row has-text-centered is-align-items-center">
<i class="fa-solid fa-phone fa-3x mb-5"></i>
<h2 class="title is-3 has-text-white is-hidden-mobile">Téléphone:</h2>
<h2 class="title is-4 has-text-white is-hidden-mobile mb-1">Téléphone:</h2>
{{ range .Params.telephone }}
<p class="subtitle is-5 has-text-white mb-0">{{ . }}</p>
<a href="tel:{{ . }}"><p class="subtitle is-6 has-text-white">{{ . }}</p></a>
{{ end }}
</div>
</div>