Mylloon
f84a37829c
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
- Rework metadata, now each type of file based on markdown have his own metadata struct (blog/portfolio/contacts) - Contact is now generated by markdown files Reviewed-on: #38 Co-authored-by: Mylloon <kennel.anri@tutanota.com> Co-committed-by: Mylloon <kennel.anri@tutanota.com>
31 lines
796 B
HTML
31 lines
796 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>
|
|
<p>Je suis présent relativement partout sur internet 😸</p>
|
|
|
|
{{#data}} {{#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}} {{/data}}
|
|
</main>
|
|
</body>
|
|
</html>
|