feat: Modification de la page des associations

This commit is contained in:
2022-11-11 14:59:29 +01:00
parent 804ed9c7fc
commit aa6c8ff360
2 changed files with 3 additions and 4 deletions

View File

@ -18,12 +18,12 @@
<ul>
{{ if isset $membre "téléphone" }}
<li>
<a href="tel:">{{ $membre.téléphone }}</a>
{{ printf "[%s](tel:%s)" (replace $membre.téléphone " " "") (replace $membre.téléphone " " "") | markdownify }}
</li>
{{ end }}
{{ if isset $membre "mail" }}
<li>
<a href="mailto:">{{ $membre.mail }}</a>
{{ printf "[%s](mailto:%s)" $membre.mail $membre.mail | markdownify }}
</li>
{{ end }}
</ul>