site/backend/app/templates/_postnav.html

15 lines
315 B
HTML
Raw Normal View History

2024-09-02 07:22:23 +00:00
<div>
{% if prev_url %}
<a class="button" href="{{ prev_url }}">Newer</a>
{% else %}
<a class="button" aria-disabled=true>Newer</a>
{% endif %}
2024-08-08 15:14:44 +00:00
2024-09-02 07:22:23 +00:00
{% if next_url %}
<a class="button" href="{{ next_url }}">Older</a>
{% else %}
<a class="button" aria-disabled=true>Older</a>
{% endif %}
</div>
2024-08-08 15:14:44 +00:00