17 lines
417 B
HTML
17 lines
417 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 class="blocktitle">
|
|
{{ 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 %}
|