34 lines
880 B
HTML
34 lines
880 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head dir="ltr">
|
|
{{>head.html}}
|
|
<link rel="stylesheet" href="/css/index.css" />
|
|
</head>
|
|
<body>
|
|
<header>{{>navbar.html}}</header>
|
|
<main>
|
|
{{#data}}
|
|
|
|
<div>
|
|
<span id="name">{{fullname}}</span>
|
|
<span id="pronouns">(il/lui, he/him)</span>
|
|
<img
|
|
id="avatar"
|
|
src="/icons/apple-touch-icon.png"
|
|
alt="Avatar"
|
|
title="Mon avatar, dessiné un jour super rapidement sur Gimp."
|
|
loading="lazy"
|
|
/>
|
|
</div>
|
|
<p id="subname"></p>
|
|
|
|
{{#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}}
|
|
</main>
|
|
<script src="/js/index.js"></script>
|
|
</body>
|
|
</html>
|