refactor: move personal site to sites/nrd.sh/

Reorganize for monorepo structure:
- Move content/, templates/, static/, site.toml → sites/nrd.sh/
- Frees root for sukr docs site
- Build with: sukr -c sites/nrd.sh/site.toml
This commit is contained in:
Timothy DeHerrera
2026-01-31 15:47:47 -07:00
parent e1ee18ca8a
commit 0516bfc600
49 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% extends "base.html" %} {% block content %}
<section class="hero">
<h1>{{ page.title }}</h1>
{% if page.description %}
<p class="tagline">{{ page.description }}</p>
{% endif %}
</section>
<section class="content">{{ content | safe }}</section>
{% endblock content %}