{% comment %} Article Navigation: Shows Previous and Next post links. Include this at the bottom of post content. {% endcomment %} {% assign sorted_posts = site.posts | sort: 'date' %} {% assign post_count = sorted_posts | size %} {% for p in sorted_posts %} {% if p.url == page.url %} {% assign current_index = forloop.index0 %} {% endif %} {% endfor %} {% if current_index != nil %} {% assign prev_index = current_index | minus: 1 %} {% assign next_index = current_index | plus: 1 %} {% if prev_index >= 0 %} {% assign prev_post = sorted_posts[prev_index] %} {% endif %} {% if next_index < post_count %} {% assign next_post = sorted_posts[next_index] %} {% endif %} {% if prev_post or next_post %}
Continue Reading
{% if prev_post %}
{% else %}
{% endif %} {% if next_post %}
{% else %}
{% endif %}
{% endif %} {% endif %}