the home site for me: also iteration 3 or 4 of my site
1{% extends "base.html" %} {% block content %}
2<h1 class="title">{{ section.title }}</h1>
3
4<p role="heading">
5 --- <span style="letter-spacing: 0.1em">Main Blog</span> ---
6</p>
7
8<ul>
9 <!-- If you are using pagination, section.pages will be empty.
10 You need to use the paginator object -->
11 {% for page in section.pages %} {% if "archival" not in page.taxonomies.tags
12 %}
13 <li>
14 {{ page.date | split(pat="T") | first }} —
15 <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
16 </li>
17 {% endif %} {% endfor %}
18</ul>
19
20<p role="heading">
21 --- <span style="letter-spacing: 0.213em">Archival</span> ---
22</p>
23
24<ul>
25 {% for page in section.pages %} {% if "archival" in page.taxonomies.tags %}
26 <li>
27 {{ page.date }} —
28 <a href="{{ page.permalink | safe }}">{{ page.title }}</a> (archival)
29 </li>
30 {% endif %} {% endfor %}
31</ul>
32{% endblock content %}