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