mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
- New realfavicongenerator.net packages (https://realfavicongenerator.net/blog/new-favicon-package-less-is-more/) - Support all possible Pelican feed links - Add recommended HEAD elements (https://github.com/joshbuchea/HEAD) - Use minified css assets - Link to boostrap, clean-blog and font-awesome stylesheets - Add theme options, better options names Template consistency, update structure on base.html Fix missing article summary on index.html Show the article.summary for teasers
15 lines
541 B
HTML
15 lines
541 B
HTML
{% if DEFAULT_PAGINATION %}
|
|
<ul class="pagination">
|
|
{% if articles_page.has_previous() %}
|
|
<li><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">«</a></li>
|
|
{% else %}
|
|
<li class="disabled"><span>«<span></li>
|
|
{% endif %}
|
|
<li><span>{{ articles_page.number }} of {{ articles_paginator.num_pages }}</span></li>
|
|
{% if articles_page.has_next() %}
|
|
<li><a href="{{ SITEURL }}/{{ articles_next_page.url }}">»</a></li>
|
|
{% else %}
|
|
<li class="disabled"><span>»<span></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endif %}
|