Files
stevenlr.com/templates/blog.html
2023-10-31 23:23:51 +01:00

12 lines
249 B
HTML

{% 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 %}