Files
moonweb-site/code/index.njk
T
2026-08-13 21:58:53 +02:00

31 lines
763 B
Plaintext

---
title: "Code"
section: "code"
description: "Curated catalog of my public GitHub projects — automation, dev tools, web apps, and firmware."
layout: base.njk
subcategories:
- "Automation & Sync"
- "Dev Tools"
- "Web Apps"
- "Firmware & Hardware"
- "Misc"
---
<p>A curated, sorted catalog of my public GitHub projects. Each card links
directly to its repository.</p>
{% for subcat in subcategories %}
<section class="card-section">
<h2>{{ subcat }}</h2>
<div class="card-grid">
{% for repo in repos %}
{% if repo.subcategory == subcat %}
<a class="card" href="{{ repo.repo_url }}">
<h3>{{ repo.title }}</h3>
<p>{{ repo.summary }}</p>
</a>
{% endif %}
{% endfor %}
</div>
</section>
{% endfor %}