site/templates/index.html
2022-07-27 00:13:58 -07:00

14 lines
302 B
HTML

{% extends "base.html" %}
{% block content %}
{{ section.content | safe }}
<div class="navbar">
<a href="https://git.karx.xyz/missing/site">..</a>
{% for page in section.pages %}
- <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% endfor %}
</div>
{% endblock content %}