diff --git a/themes/bootstrap2/templates/pagination.html b/themes/bootstrap2/templates/pagination.html new file mode 100644 index 0000000000000000000000000000000000000000..83c587ace928b690306e6f13947c919f27f6cf67 --- /dev/null +++ b/themes/bootstrap2/templates/pagination.html @@ -0,0 +1,15 @@ +{% if DEFAULT_PAGINATION %} +

+ {% if articles_page.has_previous() %} + {% if articles_page.previous_page_number() == 1 %} + « + {% else %} + « + {% endif %} + {% endif %} + Page {{ articles_page.number }} / {{ articles_paginator.num_pages }} + {% if articles_page.has_next() %} + » + {% endif %} +

+{% endif %}