mylloon.fr/templates/contact/index.html
Mylloon aa1ba564dc
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
add missing mail obfuscater injection
2024-06-02 20:02:23 +02:00

34 lines
895 B
HTML

<!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>
{{#data}}{{#about}} {{&content}} {{/about}} {{#socials_exists}}
<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}}
</main>
{{#about}} {{#metadata}}
{{#mail_obfsucated}}{{>libs/mail_obfuscater.html}}{{/mail_obfsucated}}
{{/metadata}} {{/about}} {{/data}}
</body>
</html>