diff -r bb011397a99c -r 9507107a1133 theme/templates/paginator.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/theme/templates/paginator.html Sat Mar 12 17:37:27 2016 +0100 @@ -0,0 +1,11 @@ +{% if DEFAULT_PAGINATION %} +

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

+{% endif %}