aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/bootstrap4-jinja/templates/index_helper.tmpl
blob: 2fec2c6d6af993830d148330eea24a660112dd94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{#  -*- coding: utf-8 -*- #}
{% macro html_pager() %}
    {% if prevlink or nextlink %}
        <ul class="pager postindexpager clearfix">
        {% if prevlink %}
            <li class="previous"><a href="{{ prevlink }}" rel="prev">{{ messages("Newer posts") }}</a></li>
        {% endif %}
        {% if nextlink %}
            <li class="next"><a href="{{ nextlink }}" rel="next">{{ messages("Older posts") }}</a></li>
        {% endif %}
        </ul>
    {% endif %}
{% endmacro %}