> ‘themes/aurora/LICENSE’ < ‘themes/theme-dark/README.md’ > ‘themes/aurora/README.md’ < ‘themes/theme-dark/screenshot.png’ > ‘themes/aurora/screenshot.png’ < ‘themes/theme-dark/static/css/main.css’ > ‘themes/aurora/static/css/main.css’ < ‘themes/theme-dark/static/css/pygment.css’ > ‘themes/aurora/static/css/pygment.css’ < ‘themes/theme-dark/static/css/tachyons.min.css’ > ‘themes/aurora/static/css/tachyons.min.css’ < ‘themes/theme-dark/static/js/jquery-3.5.0.min.js’ > ‘themes/aurora/static/js/jquery-3.5.0.min.js’ < ‘themes/theme-dark/templates/analytics.html’ > ‘themes/aurora/templates/analytics.html’ < ‘themes/theme-dark/templates/archives.html’ > ‘themes/aurora/templates/archives.html’ < ‘themes/theme-dark/templates/article.html’ > ‘themes/aurora/templates/article.html’ < ‘themes/theme-dark/templates/author.html’ > ‘themes/aurora/templates/author.html’ < ‘themes/theme-dark/templates/authors.html’ > ‘themes/aurora/templates/authors.html’ < ‘themes/theme-dark/templates/base.html’ > ‘themes/aurora/templates/base.html’ < ‘themes/theme-dark/templates/categories.html’ > ‘themes/aurora/templates/categories.html’ < ‘themes/theme-dark/templates/category.html’ > ‘themes/aurora/templates/category.html’ < ‘themes/theme-dark/templates/comments.html’ > ‘themes/aurora/templates/comments.html’ < ‘themes/theme-dark/templates/disqus_script.html’ > ‘themes/aurora/templates/disqus_script.html’ < ‘themes/theme-dark/templates/github.html’ > ‘themes/aurora/templates/github.html’ < ‘themes/theme-dark/templates/index.html’ > ‘themes/aurora/templates/index.html’ < ‘themes/theme-dark/templates/page.html’ > ‘themes/aurora/templates/page.html’ < ‘themes/theme-dark/templates/pagination.html’ > ‘themes/aurora/templates/pagination.html’ < ‘themes/theme-dark/templates/piwik.html’ > ‘themes/aurora/templates/piwik.html’ < ‘themes/theme-dark/templates/tag.html’ > ‘themes/aurora/templates/tag.html’ < ‘themes/theme-dark/templates/taglist.html’ > ‘themes/aurora/templates/taglist.html’ < ‘themes/theme-dark/templates/tags.html’ > ‘themes/aurora/templates/tags.html’ < ‘themes/theme-dark/templates/translations.html’ > ‘themes/aurora/templates/translations.html’ < ‘themes/theme-dark/templates/twitter.html’ > ‘themes/aurora/templates/twitter.html’
16 lines
628 B
HTML
16 lines
628 B
HTML
{% if DEFAULT_PAGINATION %}
|
|
<p class="paginator">
|
|
{% if articles_page.has_previous() %}
|
|
{% if articles_page.previous_page_number() == 1 %}
|
|
<a href="{{ SITEURL }}/{{ page_name }}.html">«</a>
|
|
{% else %}
|
|
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html">«</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{{ articles_page.number }} / {{ articles_paginator.num_pages }}
|
|
{% if articles_page.has_next() %}
|
|
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">»</a>
|
|
{% endif %}
|
|
</p>
|
|
{% endif %}
|