blob: 8a7d96bc8375ed1c5feb87e87afe338946dbfcd4 (
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" rel="next" href="{{ page.next.url | relative_url }}">
{{ site.data[site.active_lang].strings.post.next }}
</a>
{% endif %}
</div>
<div class="navigation-element end-justified">
{% if page.previous %}
<a class="button is-info" rel="prev" href="{{ page.previous.url | relative_url }}">
{{ site.data[site.active_lang].strings.post.previous }}
</a>
{% endif %}
</div>
</div>
</div>
|