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
7 lines
189 B
HTML
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 %}
|