2023-07-04 02:37:44 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2023-09-09 19:20:39 +02:00
|
|
|
{% block content %}
|
2023-07-04 02:37:44 +02:00
|
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
|
|
|
|
{{ section.content | safe }}
|
|
|
|
|
|
|
|
{% if paginator %}
|
|
|
|
{% set pages = paginator.pages %}
|
|
|
|
{% else %}
|
|
|
|
{% set pages = section.pages %}
|
|
|
|
{% endif %}
|
2023-07-29 05:37:37 +02:00
|
|
|
|
|
|
|
<ul class="titleList">
|
2023-07-04 02:37:44 +02:00
|
|
|
{% for page in pages %}
|
2023-12-23 01:31:43 +01:00
|
|
|
<li>
|
2023-12-25 00:41:54 +01:00
|
|
|
<a href="{{ page.permalink | safe }}">{{ page.title }}{% if config.extra.show_date_paginator and config.extra.show_date_paginator == true %}<span class="contentDate"> @ {{ page.date }}</span>{% endif %}</a>
|
2023-12-23 01:31:43 +01:00
|
|
|
</li>
|
2023-07-04 02:37:44 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2023-07-29 05:37:37 +02:00
|
|
|
|
2023-07-04 02:37:44 +02:00
|
|
|
{% if paginator %}
|
2023-12-25 02:39:41 +01:00
|
|
|
<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>
|
2023-07-04 02:37:44 +02:00
|
|
|
{% endif %}
|
2023-12-23 01:31:43 +01:00
|
|
|
{% endblock content %}
|