site/templates/blog.html
2024-11-14 18:38:05 +02:00

10 lines
206 B
HTML

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