{% assign tag = page.tags[0] %} {% assign notarchived = site.tags[tag] | where: "archived", "false" %} {% assign nilarchived = site.tags[tag] | where: "archived", nil %} {% assign posts = notarchived | concat: nilarchived %} {% for post in posts %} {% if post.url != page.url %} {% continue %} {% endif %} {% if forloop.last == false %} {% assign prev = forloop.index0 | plus: 1 %} {% endif %} {% if forloop.first == false %} {% assign next = forloop.index0 | minus: 1 %} {% endif %} {% break %} {% endfor %} 🏠 Back to Main Page {% if prev %} ⏮️ Previous {{ tag }} Post {% endif %} {% if next %} ⏭️ Next {{ tag }} Post {% endif %}