Initial commit

This commit is contained in:
Froge 2025-01-31 21:17:47 +10:00
commit 7e3b4d9cbc
Signed by: froge
GPG key ID: A825E09930271BFA
8 changed files with 157 additions and 0 deletions

11
templates/index.html Normal file
View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<ul>
<!-- If you are using pagination, section.pages will be empty.
You need to use the paginator object -->
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}