Files
blog/templates/blog.html
2025-08-06 00:01:31 -04:00

13 lines
271 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.date }}</a> ~ {{ page.description }}</li>
{% endfor %}
</ul>
{% endblock content %}