feat: Ajout des bouton cta

This commit is contained in:
Simon 2022-10-05 16:50:40 +02:00
parent 8067ce4c98
commit 744e37a396
2 changed files with 16 additions and 1 deletions

View File

@ -13,3 +13,11 @@ cta:
Ensuite nous vous proposons un devis pour intervenir selon votre besoin. Ensuite nous vous proposons un devis pour intervenir selon votre besoin.
Dans un second temps nous pourrons mettre en place un forfait et nous occuper de transformer en douceur votre jardin durablement, par son entretien. Dans un second temps nous pourrons mettre en place un forfait et nous occuper de transformer en douceur votre jardin durablement, par son entretien.
call_to_action :
- icon : ti-mobile # themify icon pack : https://themify.me/themify-icons
text : 06 99 99 00 33
link : "tel:0699990033"
- icon : ti-email # themify icon pack : https://themify.me/themify-icons
text : bonjour@jarnat.fr
link : mailto:bonjour@jarnat.fr

View File

@ -16,6 +16,13 @@
<a href="{{ .link }}" class="btn btn-main page-scroll">{{ .label }}</a> <a href="{{ .link }}" class="btn btn-main page-scroll">{{ .label }}</a>
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ with .call_to_action }}
<div class="text-center p-3">
{{ range . }}
<a href="{{ .link | safeURL }}" class="btn btn-primary m-2">{{ .text }}</a>
{{ end }}
</div>
{{ end }}
</div> </div>
</div> </div>
</div> </div>