From f1b37410dd85f42d663f1eb591ac9bde567eeb47 Mon Sep 17 00:00:00 2001 From: Vasudev Kamath Date: Sun, 17 Apr 2016 13:15:23 +0530 Subject: Template copied from pelican's simple theme. --- templates/pagination.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 templates/pagination.html (limited to 'templates/pagination.html') diff --git a/templates/pagination.html b/templates/pagination.html new file mode 100644 index 0000000..4219a5c --- /dev/null +++ b/templates/pagination.html @@ -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 %} -- cgit v1.2.3