site/templates/blog.html

10 lines
206 B
HTML
Raw Normal View History

2024-11-14 17:35:47 +01:00
{% extends "base.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
{% for page in section.pages %}
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% endfor %}
{% endblock %}