25 lines
No EOL
849 B
HTML
25 lines
No EOL
849 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
|
|
{% if config.extra.list_pages %}
|
|
{% if paginator %}
|
|
{% set pages = paginator.pages %}
|
|
{% else %}
|
|
{% set pages = section.pages %}
|
|
{% endif %}
|
|
<ul>
|
|
{% for page in pages %}
|
|
<li>
|
|
<a href="{{ page.permalink | safe }}">{% if page.date %}{{ page.date }} - {% endif %}{{ page.title }}</a>
|
|
<br />
|
|
{{ page.description }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% if paginator %}
|
|
<p>{% if paginator.previous %}<a href="{{ paginator.first }}"><< First</a> <a href="{{ paginator.previous }}">< Previous</a>{% endif %} [{{ paginator.current_index }}/{{ paginator.number_pagers }}] {% if paginator.next %}<a href="{{ paginator.next }}">Next ></a> <a href="{{ paginator.last }}">Last >></a>{% endif %}</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock content %} |