blog/templates/blog.html

18 lines
477 B
HTML
Raw Normal View History

2025-03-27 16:03:55 +01:00
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
<!-- If you are using pagination, section.pages will be empty.
You need to use the paginator object -->
{% for page in section.pages %}
2025-05-14 22:36:03 +02:00
<li>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% if page.description %}{{ page.description }}{% endif %}
{{ page.summary }}
</li>
2025-03-27 16:03:55 +01:00
{% endfor %}
</ul>
{% endblock content %}