post-pagination.html 537 B

12345678910
  1. {% if page.previous or page.next %}
  2. <div class="post-pagination">
  3. {% if page.previous %}
  4. <a href="{{ page.previous.url }}" class="btn-pagination prev" title="{{ page.previous.title | markdownify | strip_html }}"><i class="fa fa-angle-double-left" aria-hidden="true"></i> Prev</a>
  5. {% endif %}
  6. {% if page.next %}
  7. <a href="{{ page.next.url }}" class="btn-pagination next" title="{{ page.next.title | markdownify | strip_html }}">Next <i class="fa fa-angle-double-right" aria-hidden="true"></i></a>
  8. {% endif %}
  9. </div>
  10. {% endif %}