2017-08-06 18:01:22 +00:00
|
|
|
<div class="post-pager is-clearfix is-flex mt-2">
|
2017-07-11 00:08:32 +00:00
|
|
|
{% if page.previous_post %}
|
2017-08-06 18:01:22 +00:00
|
|
|
<div class="is-half flex">
|
2017-07-11 00:08:32 +00:00
|
|
|
<a href="{{ page.previous_post.url }}">
|
|
|
|
« {{ page.previous_post.title }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.next_post %}
|
2017-08-06 18:01:22 +00:00
|
|
|
<div class="is-half flex has-text-right">
|
2017-07-11 00:08:32 +00:00
|
|
|
<a href="{{ page.next_post.url }}">
|
|
|
|
{{ page.next_post.title }} »
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|