theme/templates/paginator.html

Sat, 19 Mar 2016 00:55:18 +0100

author
David Douard <david.douard@logilab.fr>
date
Sat, 19 Mar 2016 00:55:18 +0100
changeset 44
96b26fb52f0b
parent 36
9507107a1133
permissions
-rw-r--r--

[content] remove the :date: metadata

since we now use the filetime_from_hg plugin

{% 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