mylloon.fr/templates/index.html

78 lines
2.2 KiB
HTML
Raw Normal View History

2023-02-09 10:45:59 +01:00
<!DOCTYPE html>
2023-09-14 17:55:01 +02:00
<html lang="fr">
2023-04-24 17:22:12 +02:00
<head dir="ltr">
{{>head.html}}
2023-10-09 20:43:56 +02:00
<link rel="stylesheet" href="/css/index.css" />
2023-04-24 17:22:12 +02:00
</head>
2023-09-14 17:55:01 +02:00
<body>
2023-10-09 20:43:56 +02:00
<header>{{>navbar.html}}</header>
<main>
{{#data}}
<div>
<span id="name">{{fullname}}</span>
<span id="pronouns">(il/lui, he/him)</span>
2023-10-09 20:43:56 +02:00
<img
id="avatar"
2023-10-09 20:43:56 +02:00
src="/icons/apple-touch-icon.png"
2023-10-13 18:46:35 +02:00
alt="Avatar"
title="Mon avatar, dessiné un jour super rapidement sur Gimp."
2023-10-09 20:43:56 +02:00
loading="lazy"
/>
</div>
<p id="subname"></p>
2023-10-09 20:43:56 +02:00
<article>
<h1>Bienvenue !</h1>
<p>Content de vous voir ici !</p>
</article>
2023-10-13 18:46:35 +02:00
<article>
<h1>Qui suis-je ?</h1>
<p>Je m'appelle <b>Anri</b>, mon pseudo est <b>Mylloon</b>.</p>
<p>
J'aime beaucoup l'informatique depuis très petit, ce site est écrit de
A à Z par moi-même (modulo la quantité astronomique de librairie
utilisé) en Rust. J'adore le monde de l'open source, l'immense
majorité de mes projets sont sous licence
<a
href="https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License"
target="_blank"
rel="noreferrer"
>AGPLv3</a
>. Vous pouvez voir mon <a href="/portfolio">portfolio ici</a>, ainsi
que mes <a href="/contrib">contributions sur GitHub ici</a>.
2023-10-13 18:46:35 +02:00
</p>
<p>
Il m'arrive aussi, parfois, d'écrire dans
<a href="/blog">sur mon blog</a>.
2023-10-13 18:46:35 +02:00
</p>
</article>
2023-10-13 19:43:19 +02:00
<article id="friends">
2023-10-13 13:29:47 +02:00
<h1>Personnes incroyables</h1>
2023-10-13 14:00:01 +02:00
<a
href="https://github.com/2-1-1-2"
2023-10-13 19:43:19 +02:00
title="GitHub de 21_12"
2023-10-13 14:00:01 +02:00
target="_blank"
rel="noreferrer"
2023-10-13 18:31:31 +02:00
><img src="/badges/friends/21_12.webp" alt="21_12" loading="lazy"
2023-10-13 15:52:49 +02:00
/></a>
<a
href="https://twitter.com/azazouille_"
2023-10-13 19:43:19 +02:00
title="Twitter de Azazouille"
2023-10-13 15:52:49 +02:00
target="_blank"
rel="noreferrer"
2023-10-13 18:46:35 +02:00
><img
src="/badges/friends/azazouille.webp"
alt="Azazouille"
loading="lazy"
2023-10-13 14:00:01 +02:00
/></a>
2023-10-13 18:46:35 +02:00
</article>
2023-10-13 12:52:20 +02:00
2023-10-09 20:43:56 +02:00
{{/data}}
</main>
<script src="/js/index.js"></script>
2023-02-09 10:45:59 +01:00
</body>
</html>