initial commit

This commit is contained in:
2026-08-11 17:39:34 -05:00
commit 9b44006c18
22 changed files with 24580 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<body>
{# hello this is an example file #}
<header>
<h1>{{ page.title|title }}</h1>
<nav>
{% if page.links|length > 0 %}
<ul>
{% for label, link in page.links %}
<li>
{% url 'nav-pages' link as href %}
<a href="{{href}}">{{label}}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</nav>
</header>
{% block content %}
{% endblock %}
<footer>
{% for foot in page.footer %}
{% endfor %}
</footer>
</body>