{% if page.collection == "poems" %} {% assign visible_posts = site.poems | where_exp: "item", "item.hidden != true" | sort | reverse %} {% else %} {% assign visible_posts = site.posts | where_exp: "item", "item.hidden != true" %} {% endif %} {% assign nav_previous = nil %} {% assign nav_next = nil %} {% for post in visible_posts %} {% if post.url == page.url %} {% assign prev_idx = forloop.index0 | plus: 1 %} {% assign nav_previous = visible_posts[prev_idx] %} {% if forloop.index0 > 0 %} {% assign next_idx = forloop.index0 | minus: 1 %} {% assign nav_next = visible_posts[next_idx] %} {% endif %} {% endif %} {% endfor %}
{% if nav_previous.url %}

{{ nav_previous.title }}

{% else %}

-

{% endif %} {% if nav_next.url %}

{{ nav_next.title }}

{% else %}

-

{% endif %}