2023-02-09 10:45:59 +01:00
|
|
|
<!DOCTYPE html>
|
2023-10-15 20:58:20 +02:00
|
|
|
<html lang="fr">
|
2023-04-24 17:22:12 +02:00
|
|
|
<head dir="ltr">
|
|
|
|
{{>head.html}}
|
2023-10-15 20:58:20 +02:00
|
|
|
<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>
|
2023-10-15 20:58:20 +02:00
|
|
|
<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}}
|
2023-10-15 20:58:20 +02:00
|
|
|
<img
|
|
|
|
id="avatar"
|
2024-01-24 13:09:20 +01:00
|
|
|
src="{{avatar}} "
|
2023-10-15 20:58:20 +02:00
|
|
|
alt="Avatar"
|
2024-01-24 13:09:20 +01:00
|
|
|
title="{{avatar_caption}} "
|
2023-10-15 20:58:20 +02:00
|
|
|
loading="lazy"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<p id="subname"></p>
|
|
|
|
|
2024-06-02 18:19:58 +02:00
|
|
|
{{#file}} {{&content}} {{/file}} {{^file}}
|
2024-01-24 12:38:37 +01:00
|
|
|
<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}}
|
2023-10-15 20:58:20 +02:00
|
|
|
</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>
|