aboutsummaryrefslogtreecommitdiffstats
path: root/SoMA2/templates/pagination.html
diff options
context:
space:
mode:
authorScott Kensell <scott.kensell@prezi.com>2014-05-17 19:49:35 +0200
committerScott Kensell <scott.kensell@prezi.com>2014-05-17 19:49:35 +0200
commit802d891506bb6ef2f9b57a5927f1ddd2349d2f9e (patch)
tree53e01dbc4b4669ec904e01aafeb995c35eaea03a /SoMA2/templates/pagination.html
parentc3ae06311249b930bb057600d1c76063e847ef76 (diff)
downloadpelican-themes-802d891506bb6ef2f9b57a5927f1ddd2349d2f9e.tar.gz
Copied the SOMA template
Diffstat (limited to 'SoMA2/templates/pagination.html')
-rw-r--r--SoMA2/templates/pagination.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/SoMA2/templates/pagination.html b/SoMA2/templates/pagination.html
new file mode 100644
index 0000000..b8553fd
--- /dev/null
+++ b/SoMA2/templates/pagination.html
@@ -0,0 +1,15 @@
+{% if DEFAULT_PAGINATION %}
+<div class="paginator">
+ {% if articles_page.has_previous() %}
+ {% if articles_page.previous_page_number() == 1 %}
+ <div class="navButton"> <a href="{{ SITEURL }}/{{ page_name }}.html" >Prev</a></div>
+ {% else %}
+ <div class="navButton"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html">Prev</a></div>
+ {% endif %}
+ {% endif %}
+ <div class="navButton">Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}</div>
+ {% if articles_page.has_next() %}
+ <div class="navButton"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" >Next</a></div>
+ {% endif %}
+</div>
+{% endif %}