{% set all = articles|selectattr('category', 'equalto', category)|list %} {% if article in all %} {% set pos = all.index(article) %} {% set next = all[pos - 1] if pos > 0 else "" %} {% set prev = all[pos + 1] if pos < all|length else "" %}
 
{% endif %}