themes
This commit is contained in:
parent
edf883c2f6
commit
3b5262ab5e
101 changed files with 7668 additions and 13930 deletions
11
themes/pelican-striped-html5up/templates/pagination.html
Normal file
11
themes/pelican-striped-html5up/templates/pagination.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% if DEFAULT_PAGINATION %}
|
||||
<p class="paginator">
|
||||
{% if articles_page.has_previous() %}
|
||||
<a class="button previous" href="{{ SITEURL }}/{{ articles_previous_page.url }}">Newer Entries</a>
|
||||
{% endif %}
|
||||
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
|
||||
{% if articles_page.has_next() %}
|
||||
<a class="button next" href="{{ SITEURL }}/{{ articles_next_page.url }}">Older Entries</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue