ttrpg-compendium/_includes/journal_footer.html
Bill Niblock 3c4529c74f
Some checks failed
/ jekyll (push) Failing after 15s
Fix linking for deployment to Codeberg Pages
2024-06-14 14:52:31 -04:00

26 lines
740 B
HTML

<footer>
{% assign entries = site.posts | where: "aut", page.aut %}
{% for entry in entries %}
{% if entry.id == page.id %}
{% assign this_index = forloop.index0 | to_integer %}
{% break %}
{% endif %}
{% endfor %}
{% assign next_index = this_index | minus: 1 %}
{% assign prev_index = this_index | plus: 1 %}
{% if prev_index < entries.size %}
<span class="previous">
<a href="{{ site.baseurl }}{{ entries[prev_index].url }}">Previous</a>
</span>
{% endif %}
<span class="home">
<a href="{{ site.baseurl }}/journals/{{ page.aut }}">Journal Index</a>
</span>
{% if next_index >= 0 %}
<span class="next">
<a href="{{ site.baseurl }}{{ entries[next_index].url }}">Next</a>
</span>
{% endif %}
</footer>