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<ul> 4 <!-- If you are using pagination, section.pages will be empty. 5 You need to use the paginator object --> 6 {% for page in section.pages %} 7 {% if "archival" not in page.taxonomies.tags %} 8 <li>{{ page.date }} &mdash; <a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> 9 {% endif %} 10 {% endfor %} 11</ul> 12 13<ul> 14 {% for page in section.pages %} 15 {% if "archival" in page.taxonomies.tags %} 16 <li>{{ page.date }} &mdash; <a href="{{ page.permalink | safe }}">{{ page.title }}</a> (archival)</li> 17 {% endif %} 18 {% endfor %} 19</ul> 20{% endblock content %}