This commit is contained in:
2023-10-31 23:23:51 +01:00
commit ef15a6ec8f
20 changed files with 1707 additions and 0 deletions

11
templates/blog.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> - {{ page.date | date(format="%B %-d, %Y") }}</li>
{% endfor %}
</ul>
{% endblock %}