You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
386 B
HTML
15 lines
386 B
HTML
2 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title">
|
||
|
<title>
|
||
|
{{ section.title }}
|
||
|
</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 %}
|
||
|
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock content %}
|