Files
sukr/sites/nrd.sh/templates/page.html
Timothy DeHerrera 0516bfc600 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
2026-01-31 15:47:47 -07:00

7 lines
189 B
HTML

{% extends "base.html" %} {% block content %}
<article class="page">
<h1>{{ page.title }}</h1>
<section class="content">{{ content | safe }}</section>
</article>
{% endblock content %}