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 }}" class="text-glow"
16 >{{ page.title }}</a
17 >
18 </li>
19 {% endif %} {% endfor %}
20</ul>
21
22<p role="heading">
23 --- <span style="letter-spacing: 0.213em">Archival</span> ---
24</p>
25
26<ul>
27 {% for page in section.pages %} {% if "archival" in page.taxonomies.tags %}
28 <li>
29 {{ page.date }} —
30 <a href="{{ page.permalink | safe }}" class="text-glow"
31 >{{ page.title }}</a
32 >
33 (archival)
34 </li>
35 {% endif %} {% endfor %}
36</ul>
37{% endblock content %}