mylloon.fr/templates/index.html

49 lines
1.2 KiB
HTML
Raw Normal View History

2023-02-09 10:45:59 +01:00
<!DOCTYPE html>
<html lang="fr">
2023-04-24 17:22:12 +02:00
<head dir="ltr">
{{>head.html}}
<link rel="stylesheet" href="/css/index.css" />
2024-03-03 20:55:00 +01:00
{{#data}} {{#avatar_style}} {{#round}}
<style>
#avatar {
border-radius: 50%;
}
</style>
{{/round}} {{#square}}
<style>
#avatar {
border-radius: 10%;
}
</style>
{{/square}} {{/avatar_style}}
2023-04-24 17:22:12 +02:00
</head>
<body>
<header>{{>navbar.html}}</header>
<main>
<div>
2024-01-24 13:09:20 +01:00
<span id="name">{{name}}</span>
{{#pronouns}}<span id="pronouns">{{pronouns}}</span>{{/pronouns}}
<img
id="avatar"
2024-01-24 13:09:20 +01:00
src="{{avatar}} "
alt="Avatar"
2024-01-24 13:09:20 +01:00
title="{{avatar_caption}} "
loading="lazy"
/>
</div>
<p id="subname"></p>
2024-06-02 18:19:58 +02:00
{{#file}} {{&content}} {{/file}} {{^file}}
<p>
<b>Welcome to EWP</b>, create a <code>index.md</code> file inside your
<code>data/</code> directory to get started.
</p>
2024-06-02 18:19:58 +02:00
{{/file}}
</main>
<script src="/js/index.js"></script>
2024-06-02 18:19:58 +02:00
{{#file}} {{#metadata}}
{{#mail_obfsucated}}{{>libs/mail_obfuscater.html}}{{/mail_obfsucated}}
{{/metadata}} {{/file}} {{/data}}
2023-02-09 10:45:59 +01:00
</body>
</html>