<nav id=“{{ include.id }}” aria-label=“{{ include.aria_label }}”>
{% for post in paginator.posts %} <article class="post_list"> <header> <h3>{% unless post.altTitle %}{{ post.title }}{% else %}{{ post.altTitle | markdownify | remove: '<p>' | remove: '</p>' | strip }}{% endunless %}</h3> {% include post-list-meta.html %} </header> <section> <p>{{ post.description }}</p> </section> <footer> {% include post-list-meta.html %} </footer> </article> {% endfor %}
</nav> <!– Pagination links –> <nav class=“pager” aria-label=“Paginator Navigation”>
<div class="container"> {% if paginator.previous_page %} <a class="prev" href="{{ paginator.previous_page_path | relative_url }}"> <span>⇐ Older</span> </a> {% endif %} {% if paginator.next_page %} <span class="float_right"> <a class="next" href="{{ paginator.next_page_path | relative_url }}"> <span>Newer ⇒</span> </a> </span> {% endif %} </div>
</nav>