nixfox-reborn/templates/blog.html

17 lines
412 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<p class="larger">sort by <a href="/tags">tags</a>.</p>
<ul>
<!-- If you are using pagination, section.pages will be empty.
You need to use the paginator object -->
{% for page in section.pages %}
{% include "blog-entry.html" %}
{% endfor %}
</ul>
{% endblock content %}