the home site for me: also iteration 3 or 4 of my site
1{% extends "base.html" %}
2
3{% block content %}
4<h1>{{ section.title }}</h1>
5
6{{ section.content | safe }}
7
8{% if paginator %}
9{% set pages = paginator.pages %}
10{% else %}
11{% set pages = section.pages %}
12{% endif %}
13
14<ul class="title-list">
15{% for page in pages %}
16 <li>
17 <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
18 </li>
19{% endfor %}
20</ul>
21
22{% if paginator %}
23<div class="accent-data">{% 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>
24{% endif %}
25{% endblock content %}