theme/templates/paginator.html

Thu, 10 Nov 2022 20:56:16 +0100

author
David Douard <david.douard@sdf3.org>
date
Thu, 10 Nov 2022 20:56:16 +0100
changeset 148
2f87039dd0b5
parent 36
9507107a1133
permissions
-rw-r--r--

Replace video links with working ones from new peertube instance

{% if DEFAULT_PAGINATION %}
<p class="paginator">
    {% if articles_page.has_previous() %}
        <a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
    {% endif %}
    Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
    {% if articles_page.has_next() %}
        <a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
    {% endif %}
</p>
{% endif %}

mercurial