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 }}">« Previous</a> |
|
|
|
|
{% endif %}
|
|
|
|
<span>Page {{ paginator.current_index }} of {{ paginator.number_pagers }}</span>
|
|
|
|
{% if paginator.next %}
|
|
|
|
| <a href="{{ paginator.next }}">Next »</a>
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
|
|
|
</main>
|
|
|
|
{% endblock content %}
|