nouveau fichier : .gitignore

nouveau fichier : content/contact.md
	nouveau fichier : templates/contact.html
This commit is contained in:
2020-12-01 16:42:44 +01:00
parent 82648cd2e0
commit 8e9b399d6a
3 changed files with 51 additions and 0 deletions

40
templates/contact.html Normal file
View File

@@ -0,0 +1,40 @@
{% extends "index.html" %}
{% import "post_macros.html" as post_macros %}
{% block content %}
<h1> {{ page.title }} </h1>
{{ post_macros::polish(content=page.content) }}
<table class="contact center">
<tr>
<th> Service </th>
<th> Compte </th>
</tr>
<tr>
<td> Mail </td>
<td> <a class="obfuscate" href="mailto:{{ config.extra.mail }}">
{{ config.extra.mail }}
</a>
</td>
</tr>
<tr>
<td> XMPP </td>
<td class="obfuscate"> {{ config.extra.xmpp }} </td>
</tr>
<tr>
<td> Mastodon </td>
<td><a href="{{ config.extra.mastodon }}"> {{ config.extra.mastodon }} </a></td>
</tr>
<tr>
<td> gitlab </td>
<td> <a href="{{ config.extra.git }}"> </a> </td>
</tr>
</table>
{%- endblock content %}