lost-train/themes/yoshi/templates/pagination.html
Dooho Yi d8b0e204ec + ‘themes/yoshi/LICENSE’
+ ‘themes/yoshi/README.md’
+ ‘themes/yoshi/screenshot.png’
+ ‘themes/yoshi/static/css/main.css’
+ ‘themes/yoshi/static/css/pygment.css’
+ ‘themes/yoshi/static/css/tachyons.min.css’
+ ‘themes/yoshi/static/js/jquery-3.5.0.min.js’
+ ‘themes/yoshi/templates/analytics.html’
+ ‘themes/yoshi/templates/archives.html’
+ ‘themes/yoshi/templates/article.html’
+ ‘themes/yoshi/templates/author.html’
+ ‘themes/yoshi/templates/authors.html’
+ ‘themes/yoshi/templates/base.html’
+ ‘themes/yoshi/templates/categories.html’
+ ‘themes/yoshi/templates/category.html’
+ ‘themes/yoshi/templates/comments.html’
+ ‘themes/yoshi/templates/disqus_script.html’
+ ‘themes/yoshi/templates/github.html’
+ ‘themes/yoshi/templates/index.html’
+ ‘themes/yoshi/templates/page.html’
+ ‘themes/yoshi/templates/pagination.html’
+ ‘themes/yoshi/templates/piwik.html’
+ ‘themes/yoshi/templates/tag.html’
+ ‘themes/yoshi/templates/taglist.html’
+ ‘themes/yoshi/templates/tags.html’
+ ‘themes/yoshi/templates/translations.html’
+ ‘themes/yoshi/templates/twitter.html’
2020-05-23 01:23:26 +09:00

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">&laquo;</a>
{% else %}
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html">&laquo;</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">&raquo;</a>
{% endif %}
</p>
{% endif %}