summaryrefslogtreecommitdiffhomepage
path: root/website/_includes/paginator.html
blob: b4ff4c3b1efe9d89fe33e4842cb6c983a8182170 (plain)
1
2
3
4
5
6
7
8
9
10
<nav aria-label="...">
  <ul class="pager">
    {% if paginator.previous_page %}
    <li class="previous"><a href="{{ paginator.previous_page_path }}"><span aria-hidden="true">&larr;</span> Newer</a></li>
    {% endif %}
    {% if paginator.next_page %}
    <li class="next"><a href="{{ paginator.next_page_path }}">Older <span aria-hidden="true">&rarr;</span></a></li>
    {% endif %}
  </ul>
</nav>