post_pagination.html 894 B

1234567891011121314
  1. {% if page.previous or page.next %}
  2. <nav class="pagination">
  3. {% if page.previous %}
  4. <a href="{{ page.previous.url | relative_url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
  5. {% else %}
  6. <a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
  7. {% endif %}
  8. {% if page.next %}
  9. <a href="{{ page.next.url | relative_url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
  10. {% else %}
  11. <a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
  12. {% endif %}
  13. </nav>
  14. {% endif %}