feat: a terrifying quantity of rework

This commit is contained in:
Kat Inskip 2025-11-09 13:42:37 -08:00
parent 65191fd93c
commit 35f5f48cc9
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
33 changed files with 250 additions and 161 deletions

View file

@ -18,7 +18,7 @@
</head>
<body>
<div>
<div class="wrapper">
<header>
{% include "header.html" %}
</header>

View file

@ -8,7 +8,7 @@
<section>
<h3>{{ category.title }}</h3>
{% if category.note is defined %}
<p>{{ category.note }}</p>
<p>{{ category.note | markdown(inline = true) | safe }}</p>
{% endif %}
<ul>
{% for post in category.posts %}

View file

@ -5,7 +5,8 @@
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/external">External</a></li>
<li><a href="/writings">Writings</a></li>
<li><a href="/external">Things I find value in sharing</a></li>
</ul>
</nav>
<hr>

View file

@ -5,6 +5,77 @@
<h2>About</h2>
Hi! I'm Kat. I have an eclectic range of interests; as described on this page.
</section>
<section id="projects">
<h2>Projects</h2>
Please see <a href="https://git.kittywit.ch/kat">my Forgejo</a> and <a href="https://github.com/kittywitch">my GitHub</a>.
<h3>Notable items showcase</h3>
<nav>
<ul>
<li>
<article>
<a href="https://github.com/TaimiHUD/TaimiHUD">
<h3>TaimiHUD/TaimiHUD</h3>
</a>
<p>A Rust Guild Wars 2 addon that provides Encounter Timers, Squad Marker Presets and Pathing for Nexus and ArcDPS.</p>
</article>
</li>
<li>
<article>
<a href="https://github.com/kittywitch/nixfiles">
<h3>kittywitch/nixfiles</h3>
</a>
<p>Personal NixOS + Terraform infrastructure repository.</p>
</article>
</li>
<li>
<article>
<a href="https://github.com/gensokyo-zone/infrastructure">
<h3>gensokyo-zone/infrastructure</h3>
</a>
<p>Apartment NixOS + Terraform infrastructure repository, a project with my wife!</p>
</article>
</li>
</ul>
</nav>
</section>
<section id="interests">
<h2>Interests</h2>
<ul class="two">
<li>Japanese (pre-JLPT)</li>
<li>Video Games</li>
<li>Hobbyist Electronics</li>
<li>Software-defined Radio</li>
<li>Amateur Radio (not yet licensed!)</li>
<li>Firearms (not yet licensed!)</li>
<li>Anime and Manga</li>
<li>3D Printing</li>
<li>Mechanical Keyboards</li>
<li>Political science and theory</li>
</ul>
</section>
<section id="tech-interests">
<h2>Tech Interests</h2>
<ul class="two">
<li>Software Development</li>
<li>Video Game Modding</li>
<li>System Administration</li>
<li>DevSecOps + GitOps</li>
<li>Smart Home</li>
<li>Cyber Security</li>
</ul>
</section>
<section id="subcultures">
<h2>Subcultures</h2>
<section id="furrycode">
<details>
@ -104,76 +175,6 @@ b D+ G e++ h--- r+++ x+
<a href="https://qalle.neocities.org/88x31/"><img src="/88x31/qalle.png" alt="qalle"/></a>
<a href="https://capstasher.neocities.org/"><img src="/88x31/capstasher.png" alt="capstasher"></a>
<a href="https://hellnet.work">hellnet.work</a>
<hr>
</section>
<section id="projects">
<h2>Projects</h2>
Please see <a href="https://git.kittywit.ch/kat">my Forgejo</a> and <a href="https://github.com/kittywitch">my GitHub</a>.
<h3>Notable items showcase</h3>
<nav>
<ul>
<li>
<article>
<a href="https://github.com/TaimiHUD/TaimiHUD">
<h3>TaimiHUD/TaimiHUD</h3>
</a>
<p>A Rust Guild Wars 2 addon that provides Encounter Timers, Squad Marker Presets and Pathing for Nexus and ArcDPS.</p>
</article>
</li>
<li>
<article>
<a href="https://github.com/kittywitch/nixfiles">
<h3>kittywitch/nixfiles</h3>
</a>
<p>Personal NixOS + Terraform infrastructure repository.</p>
</article>
</li>
<li>
<article>
<a href="https://github.com/gensokyo-zone/infrastructure">
<h3>gensokyo-zone/infrastructure</h3>
</a>
<p>Apartment NixOS + Terraform infrastructure repository, a project with my wife!</p>
</article>
</li>
</ul>
</nav>
</section>
<hr>
<section id="interests">
<h2>Interests</h2>
<ul class="two">
<li>Japanese (pre-JLPT)</li>
<li>Video Games</li>
<li>Hobbyist Electronics</li>
<li>Software-defined Radio</li>
<li>Amateur Radio (not yet licensed!)</li>
<li>Firearms (not yet licensed!)</li>
<li>Anime and Manga</li>
<li>3D Printing</li>
<li>Mechanical Keyboards</li>
<li>Political science and theory</li>
</ul>
</section>
<section id="tech-interests">
<h2>Tech Interests</h2>
<ul class="two">
<li>Software Development</li>
<li>Video Game Modding</li>
<li>System Administration</li>
<li>DevSecOps + GitOps</li>
<li>Smart Home</li>
<li>Cyber Security</li>
</ul>
</section>
{% endblock content %}

View file

@ -4,6 +4,6 @@
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong><time>{{ page.date }}</time></strong></p>
<p class="subtitle"><strong><time>Posted: {{ page.date }}</time></strong></p>
{{ page.content | safe }}
{% endblock content %}