blog/themes/cmd/layout/includes/paginator.njk
thisLight 781759d545 move cmd to nunjucks & update hexo to 6.0.0
Other changes:
* minor fix to the display for code blocks
* remove floating when hover on cards
* replace the list of tags and categories to the index page one
* small change on the title of tags' and categories' pages
2021-12-31 18:07:40 +08:00

24 lines
655 B
Text

{% macro Paginiation() %}
<ul class="pagination center">
{% if page.prev %}
<li class="waves-effect">
<a href="{{ page.prev_link }}">
<i class="mdi mdi-chevron-left"></i>
</a>
</li>
{% endif %}
{% for n in range(1, page.total, 1) %}
<li class="{{ 'active' if page.current == n else 'waves-effect' }}">
<a href="{{ url_for('page/'+n+'/') }}">{{ n }}</a>
</li>
{% endfor %}
{% if page.next %}
<li class="waves-effect">
<a href="{{ page.next_link }}">
<i class="mdi mdi-chevron-right"></i>
</a>
</li>
{% endif %}
</ul>
{% endmacro %}