Created
August 21, 2017 22:38
-
-
Save travisjupp/fba6cfde4a0abf013efc6149d809ce3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign ordered_posts = page.parent.children | sort:'published_at' %} | |
{% for post in ordered_posts %} | |
{% if post.id == page.id %} | |
{% assign previous_post_number = forloop.index | minus:1 %} | |
{% assign next_post_number = forloop.index | plus:1 %} | |
{% endif %} | |
{% endfor %} | |
{% for post in ordered_posts %} | |
{% if forloop.index == previous_post_number %} | |
{% assign previous_post = post %} | |
{% elsif forloop.index == next_post_number %} | |
{% assign next_post = post %} | |
{% endif %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You want to wrap your buttons in those liquid {% if %} conditionals so you don’t get a ‘previous’ link on your oldest post, or a ‘next’ link on your newest post.