otmp_site/templates/index.html

25 lines
883 B
HTML
Raw Normal View History

2022-12-03 20:01:01 +01:00
{% extends "base.html" %}
{% block content %}
{{ section.content | safe }}
2022-12-04 22:19:16 +01:00
{% if config.extra.list_pages %}
2022-12-03 20:01:01 +01:00
{% if paginator %}
{% set pages = paginator.pages %}
{% else %}
{% set pages = section.pages %}
{% endif %}
<ul>
{% for page in pages %}
<li>
2023-08-09 22:40:53 +02:00
<a href="{{ page.permalink | safe }}">{% if page.date and not config.extra.no_list_date %}{{ page.date }} - {% endif %}{{ page.title }}</a>
2022-12-03 20:01:01 +01:00
<br />
{{ page.description }}
</li>
{% endfor %}
</ul>
{% if paginator %}
<p>{% if paginator.previous %}<a href="{{ paginator.first }}">&lt;&lt; First</a> <a href="{{ paginator.previous }}">&lt; Previous</a>{% endif %} [{{ paginator.current_index }}/{{ paginator.number_pagers }}] {% if paginator.next %}<a href="{{ paginator.next }}">Next &gt;</a> <a href="{{ paginator.last }}">Last &gt;&gt;</a>{% endif %}</p>
{% endif %}
{% endif %}
{% endblock content %}