2023-07-04 01:37:44 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2023-09-09 18:20:39 +01:00
|
|
|
{% block content %}
|
2023-07-04 01:37:44 +01:00
|
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
|
|
|
|
{{ section.content | safe }}
|
|
|
|
|
|
|
|
{% if paginator %}
|
|
|
|
{% set pages = paginator.pages %}
|
|
|
|
{% else %}
|
|
|
|
{% set pages = section.pages %}
|
|
|
|
{% endif %}
|
2023-07-29 04:37:37 +01:00
|
|
|
|
|
|
|
<ul class="titleList">
|
2023-07-04 01:37:44 +01:00
|
|
|
{% for page in pages %}
|
|
|
|
<li>
|
|
|
|
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2023-07-29 04:37:37 +01:00
|
|
|
|
2023-07-04 01:37:44 +01:00
|
|
|
{% if paginator %}
|
|
|
|
<div class="metaData">{% if paginator.previous %}<a href="{{ paginator.first }}">⥶</a>   <a href="{{ paginator.previous }}"><</a>{% endif %}   {{ paginator.current_index }} / {{ paginator.number_pagers }}   {% if paginator.next %}<a href="{{ paginator.next }}">></a>   <a href="{{ paginator.last }}">⥸</a>{% endif %}</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock content %}
|