mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
16 lines
918 B
HTML
16 lines
918 B
HTML
|
{% include base_path %}
|
||
|
|
||
|
{% if page.previous or page.next %}
|
||
|
<nav class="pagination">
|
||
|
{% if page.previous %}
|
||
|
<a href="{{ base_path }}{{ page.previous.url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||
|
{% else %}
|
||
|
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||
|
{% endif %}
|
||
|
{% if page.next %}
|
||
|
<a href="{{ base_path }}{{ page.next.url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||
|
{% else %}
|
||
|
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||
|
{% endif %}
|
||
|
</nav>
|
||
|
{% endif %}
|