Ajout de la page contact

This commit is contained in:
kitoy
2021-01-13 01:55:57 +01:00
parent 8e9b399d6a
commit 72da558449
28 changed files with 450 additions and 2500 deletions

View File

@@ -0,0 +1,28 @@
{% set data = load_data(path="social.toml") -%}
<table class="contact center">
<tr>
<th> Service </th>
<th> Compte </th>
</tr>
{% for service in data.services %}
{% if service.obfuscate %}
<tr>
<td> {{ service.name }} </td>
<td class="obfuscate"> {{ service.address }} </td>
</tr>
{% else %}
<tr>
<td> {{ service.name }} </td>
<td> <a href="mailto:{{ service.address }}">
{{ service.address }}
</a>
</td>
</tr>
{% endif %}
{% endfor %}
</table>