blob: 5b2d8b0475b90942586c8b2d9e9085cce0f147c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<div class="column mt-2">
<div class="flex-container">
<div class="navigation-element">
{% if page.next %}
<a class="button is-info" href="{{ page.next.url | relative_url }}">
{% t post.next %}
</a>
{% endif %}
</div>
<div cylass="navigation-element end-justified">
{% if page.previous %}
<a class="button is-info" href="{{ page.previous.url | relative_url }}">
{% t post.previous %}
</a>
{% endif %}
</div>
</div>
</div>
|