2023-10-20 18:21:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head dir="ltr">
|
|
|
|
{{>head.html}}
|
|
|
|
<link rel="stylesheet" href="/css/contact.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>{{>navbar.html}}</header>
|
|
|
|
<main>
|
|
|
|
<h1>Contact</h1>
|
2024-01-25 18:28:21 +01:00
|
|
|
{{#data}}{{#about}} {{&content}} {{/about}} {{#socials_exists}}
|
2023-10-20 18:21:11 +02:00
|
|
|
|
|
|
|
<h2>Réseaux sociaux</h2>
|
|
|
|
<ul>
|
|
|
|
{{#socials}} {{>contact/element.html}} {{/socials}}
|
|
|
|
</ul>
|
|
|
|
{{/socials_exists}} {{#forges_exists}}
|
|
|
|
<h2>Forges</h2>
|
|
|
|
<ul>
|
|
|
|
{{#forges}} {{>contact/element.html}} {{/forges}}
|
|
|
|
</ul>
|
|
|
|
{{/forges_exists}} {{#others_exists}}
|
|
|
|
<h2>Autre</h2>
|
|
|
|
<ul>
|
|
|
|
{{#others}} {{>contact/element.html}} {{/others}}
|
|
|
|
</ul>
|
|
|
|
{{/others_exists}} {{/data}}
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|