Primo commit - base sito funzionante?
This commit is contained in:
parent
7abb0ade2e
commit
71f4b86bde
30 changed files with 1742 additions and 0 deletions
17
themes/blue-penguin/templates/pagination.html
Normal file
17
themes/blue-penguin/templates/pagination.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{# Use PAGINATION_PATTERNS or pagination may break #}
|
||||
{% if DEFAULT_PAGINATION and (articles_page.has_previous() or articles_page.has_next()) %}
|
||||
|
||||
<div class="clear"></div>
|
||||
<div class="pages">
|
||||
|
||||
{% if articles_page.has_previous() %}
|
||||
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}" class="prev_page">← Previous</a>
|
||||
{% endif %}
|
||||
|
||||
{% if articles_page.has_next() %}
|
||||
<a href="{{ SITEURL }}/{{ articles_next_page.url }}" class="next_page">Next →</a>
|
||||
{% endif %}
|
||||
|
||||
<span>Page {{ articles_page.number }} of {{ articles_paginator.num_pages }}</span>
|
||||
</div>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue