1
0
mirror of https://github.com/avitex/avitex.github.io synced 2024-09-28 02:39:57 +00:00
1bit.pw/templates/blog.html

21 lines
748 B
HTML
Raw Normal View History

2020-04-11 17:22:25 +00:00
{% extends "content.html" %}
{% import "post_macros.html" as post_macros %}
{% block title %}Blog - {{ config.title }}{% endblock %}
2018-08-22 13:30:07 +00:00
{% block content %}
2020-04-11 17:22:25 +00:00
<main class="main">
{% for page in paginator.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
<hr />
<nav class="pagination muted">
{% if paginator.previous %}
<a href="{{ paginator.previous }}">&laquo; Previous</a> |
{% endif %}
<span>Page {{ paginator.current_index }} of {{ paginator.number_pagers }}</span>
{% if paginator.next %}
| <a href="{{ paginator.next }}">Next &raquo;</a>
{% endif %}
</nav>
</main>
{% endblock content %}