mirror of
https://github.com/skoelle/moonweb-site.git
synced 2026-09-17 17:00:25 +00:00
31 lines
763 B
Plaintext
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 %}
|