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" />
|
2023-04-24 17:22:12 +02:00
|
|
|
</head>
|
2023-10-15 20:58:20 +02:00
|
|
|
<body>
|
|
|
|
<header>{{>navbar.html}}</header>
|
|
|
|
<main>
|
|
|
|
{{#data}}
|
|
|
|
|
|
|
|
<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-01-24 12:38:37 +01:00
|
|
|
{{#content}} {{&content}} {{/content}} {{^content}}
|
|
|
|
<p>
|
|
|
|
<b>Welcome to EWP</b>, create a <code>index.md</code> file inside your
|
|
|
|
<code>data/</code> directory to get started.
|
|
|
|
</p>
|
|
|
|
{{/content}} {{/data}}
|
2023-10-15 20:58:20 +02:00
|
|
|
</main>
|
|
|
|
<script src="/js/index.js"></script>
|
2023-02-09 10:45:59 +01:00
|
|
|
</body>
|
|
|
|
</html>
|