mylloon.fr/templates/index.html
Mylloon a4af983418
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
typo
2024-01-21 00:10:23 +01:00

88 lines
2.5 KiB
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>
<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
>.
</p>
<p>
En ce moment, je suis en master d'informatique à Paris Cité
(anciennement Paris 7), c'est marrant on fait de l'OCaml 🤓☝️.
</p>
</article>
<article id="friends">
<h1>Personnes incroyables</h1>
<a
href="https://github.com/2-1-1-2"
title="GitHub de 21_12"
target="_blank"
rel="noreferrer"
><img src="/badges/friends/21_12.webp" alt="21_12" loading="lazy"
/></a>
<a
href="https://twitter.com/azazouille_"
title="Twitter de Azazouille"
target="_blank"
rel="noreferrer"
><img
src="/badges/friends/azazouille.webp"
alt="Azazouille"
loading="lazy"
/></a>
<a
href="https://102jjwy.carrd.co/"
title="Carrd de 102jjwy"
target="_blank"
rel="noreferrer"
><img src="/badges/friends/102jjwy.webp" alt="102jjwy" loading="lazy"
/></a>
<a
href="https://twitter.com/archivesmilfs"
title="Compte twitter favori de jas"
target="_blank"
rel="noreferrer"
><img src="/badges/friends/jas.webp" alt="jas" loading="lazy"
/></a>
</article>
{{/data}}
</main>
<script src="/js/index.js"></script>
</body>
</html>