friendenstein/templates/section.html

24 lines
903 B
HTML
Raw Normal View History

2023-07-04 02:37:44 +02:00
{% extends "base.html" %}
{% block content %}
2023-07-04 02:37:44 +02:00
<h1>{{ section.title }}</h1>
{{ section.content | safe }}
{% if paginator %}
2023-12-26 01:11:47 +01:00
{% set pages = paginator.pages %}
2023-07-04 02:37:44 +02:00
{% else %}
2023-12-26 01:11:47 +01:00
{% set pages = section.pages %}
2023-07-04 02:37:44 +02:00
{% endif %}
<ul class="titleList">
2023-12-26 01:11:47 +01:00
{% for page in pages %}
<li><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></li>
{% endfor %}
2023-07-04 02:37:44 +02:00
</ul>
2023-07-04 02:37:44 +02:00
{% if paginator %}
2023-12-26 01:11:47 +01:00
<div class="metaData">{% if paginator.previous %}<a href="{{ paginator.first }}"></a> &nbsp; <a href="{{ paginator.previous }}"><</a>{% endif %} &nbsp; {{ paginator.current_index }} / {{ paginator.number_pagers }} &nbsp; {% if paginator.next %}<a href="{{ paginator.next }}"></a> &nbsp; <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 %}