summaryrefslogtreecommitdiff
path: root/_includes/navigation_buttons.liquid
blob: f3fc319ad1c848d244b43043b3364d396a98a9d5 (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 }}">
		{% t 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 }}">
		{% t post.previous %}
	    </a>
	    {% endif %}
	</div>
    </div>
</div>