swh:1:snp:4e3e7077647a709f15b8c1b32ce7100175d0580b
Raw File
Tip revision: c4b2c08fcdc2664e886be357161da815abb8f2bc authored by Jean Kossaifi on 27 August 2017, 20:04:05 UTC
Updated doc and website
Tip revision: c4b2c08
pagination.html
<nav class="pagination">
    {# Next and Previous #}
    {% if prev %}
    <a class="button is-medium pagination-previous" href="{{ prev.link|e }}" title="{{ prev.title|striptags|e }}" accesskey="p">
        <span class="icon">
            <i class="fa fa-arrow-circle-left"></i>
        </span>
        <span>{{ _('Previous') }}</span>
    </a>
    {% endif %}
    {% if next %}
    <a class="button is-medium pagination-next" href="{{ next.link|e }}" title="{{ next.title|striptags|e }}" accesskey="n">
        <span>{{ _('Next') }} </span>
        <span class="icon">
            <i class="fa fa-arrow-circle-right"></i>
        </span>
    </a>
    {% endif %}
</nav>

back to top