2021-07-09 01:59:28 +02:00
|
|
|
{% assign tag = page.tags[0] %}
|
2021-07-14 03:54:58 +02:00
|
|
|
{% assign notarchived = site.tags[tag] | where: "archived", "false" %}
|
|
|
|
{% assign nilarchived = site.tags[tag] | where: "archived", nil %}
|
|
|
|
{% assign posts = notarchived | concat: nilarchived %}
|
2021-07-09 01:59:28 +02:00
|
|
|
|
|
|
|
{% 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 %}
|
|
|
|
|
2021-11-10 23:18:12 +01:00
|
|
|
<a class="nav-item nav-link" href="../#blog-{{ tag | slugify }}">🏠 Back to Main Page</a>
|
2021-07-09 01:59:28 +02:00
|
|
|
{% if prev %}
|
2021-12-01 18:12:11 +01:00
|
|
|
<a class="nav-item nav-link" href="{{ posts[prev].url }}">⏮️ Previous in {{ tag }}</a>
|
2021-07-09 01:59:28 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if next %}
|
2021-12-01 18:12:11 +01:00
|
|
|
<a class="nav-item nav-link" href="{{ posts[next].url }}">⏭️ Next in {{ tag }}</a>
|
|
|
|
{% endif %}
|
|
|
|
<a class="nav-item nav-link" href="/feed.xml">📰 Atom Feed</a>
|