mirror of
https://github.com/skoelle/moonweb-site.git
synced 2026-09-17 17:00:25 +00:00
34 lines
966 B
Plaintext
34 lines
966 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:
|
|
- "Smart Home Apps"
|
|
- "Maker Firmware"
|
|
- "Dev Tools"
|
|
- "Infra Tools"
|
|
- "Retro"
|
|
- "Web Projects"
|
|
---
|
|
<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 }}">
|
|
{% if repo.emoji %}<span class="card-emoji">{{ repo.emoji }}</span>{% endif %}
|
|
<h3>{{ repo.title }}</h3>
|
|
<p>{{ repo.summary }}</p>
|
|
{% if repo.stack %}<span class="card-stack">{{ repo.stack | join(", ") }}</span>{% endif %}
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
{% endfor %}
|