TinyLifeWeb/web/_includes/blognav.html

8 lines
301 B
HTML
Raw Normal View History

2023-08-12 12:39:42 +02:00
<a class="nav-item nav-link" href="../../#devlogs">🏠 Home</a>
2023-06-01 23:02:09 +02:00
{% if page.previous %}
<a class="nav-item nav-link" href="{{ page.previous.url }}">⏮️ Previous Post</a>
{% endif %}
{% if page.next %}
<a class="nav-item nav-link" href="{{ page.next.url }}">⏭️ Next Post</a>
{% endif %}