2020-02-16 22:01:48 +03:00
|
|
|
<!--
|
|
|
|
Navigation buttons at the bottom of the post.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<div class="post-navigation d-flex justify-content-between">
|
|
|
|
{% if page.previous.url %}
|
2021-01-23 22:02:19 +03:00
|
|
|
<a href="{{ site.baseurl }}{{ page.previous.url }}" class="btn btn-outline-primary"
|
2021-08-01 16:54:27 +03:00
|
|
|
prompt="{{ site.data.locales[lang].post.button.previous }}">
|
2020-02-16 22:01:48 +03:00
|
|
|
<p>{{ page.previous.title }}</p>
|
2020-02-21 21:45:07 +03:00
|
|
|
</a>
|
2020-02-16 22:01:48 +03:00
|
|
|
{% else %}
|
2022-03-27 20:45:43 +03:00
|
|
|
<div class="btn btn-outline-primary disabled"
|
2021-08-01 16:54:27 +03:00
|
|
|
prompt="{{ site.data.locales[lang].post.button.previous }}">
|
2020-02-16 22:01:48 +03:00
|
|
|
<p>-</p>
|
2022-03-27 20:45:43 +03:00
|
|
|
</div>
|
2020-02-16 22:01:48 +03:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.next.url %}
|
2021-01-23 22:02:19 +03:00
|
|
|
<a href="{{ site.baseurl }}{{page.next.url}}" class="btn btn-outline-primary"
|
2021-08-01 16:54:27 +03:00
|
|
|
prompt="{{ site.data.locales[lang].post.button.next }}">
|
2020-02-16 22:01:48 +03:00
|
|
|
<p>{{ page.next.title }}</p>
|
2020-02-21 21:45:07 +03:00
|
|
|
</a>
|
2020-02-16 22:01:48 +03:00
|
|
|
{% else %}
|
2022-03-27 20:45:43 +03:00
|
|
|
<div class="btn btn-outline-primary disabled"
|
2021-08-01 16:54:27 +03:00
|
|
|
prompt="{{ site.data.locales[lang].post.button.next }}">
|
2020-02-16 22:01:48 +03:00
|
|
|
<p>-</p>
|
2022-03-27 20:45:43 +03:00
|
|
|
</div>
|
2020-02-16 22:01:48 +03:00
|
|
|
{% endif %}
|
2020-02-21 21:45:07 +03:00
|
|
|
|
2021-01-23 22:02:19 +03:00
|
|
|
</div>
|