ada.wf/templates/index.html

78 lines
2.1 KiB
HTML
Raw Normal View History

2024-03-03 22:27:28 +01:00
{% extends "base.html" %}
{% block content %}
<header>
<h1>Site of a random human</h1>
</header>
<main>
2024-05-13 21:15:41 +02:00
<div id="woami">
<h2>$ whoami</h2>
2024-07-28 13:06:09 +02:00
<p>
I am currently a student in security. I spend my time building useless network and system infrastructure. I love free software.
</p>
2024-05-13 21:15:41 +02:00
</div>
2024-07-28 13:06:09 +02:00
2024-05-13 21:15:41 +02:00
<div id="projects">
2024-07-28 13:06:09 +02:00
2024-05-13 21:15:41 +02:00
<h2>$ ls Project</h2>
2024-07-28 13:06:09 +02:00
2024-05-13 21:15:41 +02:00
<h3><a href="https://git.gnous.eu/ada/hac">Homelab</a></h3>
2024-07-28 12:45:15 +02:00
<p>A small lab to learn network and system. I use Proxmox in bare-metal and Ubuntu for my virtual machines.
2024-07-28 13:06:09 +02:00
I automate some tasks with Ansible.
2024-07-28 12:45:15 +02:00
</p>
2024-07-28 13:06:09 +02:00
2024-05-13 21:15:41 +02:00
<h3><a href="https://git.gnous.eu/gnouseu/plakken">Plakken</a></h3>
2024-07-28 12:45:15 +02:00
<p>A web paste (like hastebin) written in Go</p>
2024-07-28 13:06:09 +02:00
2024-05-13 21:15:41 +02:00
<h3><a href="https://git.gnous.eu/ada/spiegel">Spiegel</a></h3>
2024-07-28 12:45:15 +02:00
<p>A tools written in Go for mirroring a git repository</p>
2024-05-13 21:15:41 +02:00
</div>
2024-07-28 13:06:09 +02:00
2024-05-13 21:15:41 +02:00
<div id="contribution">
<h3>Contribution</h3>
<ul>
<li><a href="https://codeberg.org/forgejo/forgejo/">Forgejo</a> (Go)</li>
<li><a href="https://gnous.eu">Gnous</a> (Ansible, CI/CD, Docker)</li>
</ul>
</div>
2024-03-03 22:27:28 +01:00
</main>
<footer>
2024-07-28 13:06:09 +02:00
<p>If you want to contact me, i y have a mail ada @ gnous.eu (my public PGP key is : <a href="/pgp.asc">0x6A7F898157C6DE6E</a>).</p>
<ul>
<li>
<a href="https://github.com/r4iponce" class="href">
<picture>
<source srcset="/github-mark-white.svg" media="(prefers-color-scheme: dark)" alt="Github logo">
<img src="/github-mark.svg" alt="Github logo">
</picture>
</a>
</li>
<li>
<a href="https://git.gnous.eu/ada" class="href">
<picture>
<img src="/forgejo.svg" alt="Forgejo logo">
</picture>
</a>
</li>
<li>
<a href="https://gitlab.gnous.eu/ada" class="href">
<picture>
<img src="/gitlab.svg" alt="Gitlab logo">
</picture>
</a>
</li>
<li>
<a href="https://codeberg.org/adaaa" class="href">
<picture>
<img src="/codeberg.svg" alt="Codeberg logo">
</picture>
</a>
</li>
</ul>
2024-03-03 22:27:28 +01:00
</footer>
</body>
2024-05-05 22:33:50 +02:00
{% endblock content %}