aboutsummaryrefslogtreecommitdiffstats
path: root/docs/_templates/relations.html
blob: 5bad0b562b45bebc7678040b0c5b9c8e12e104fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<center>
<div class="btn-group" role="group" aria-label="...">
    {% if prev %}
    <a class="btn btn-default" href="{{ prev.link|e }}">Prev Page</a>
    {% else %}
    <button type="button" class="btn btn-default disabled">Prev Page</button>
    {% endif %}

    {% if next %}
    <a class="btn btn-default" href="{{ next.link|e }}">Next Page</a>
    {% else %}
    <button type="button" class="btn btn-default disabled">Next Page</button>
    {% endif %}
</div>
</center>