Swapped next and previous labels on shows.

This commit is contained in:
David Soulayrol 2023-08-31 20:34:30 +02:00
commit 2f0abd3f2b

View file

@ -26,7 +26,7 @@
{% set offset = 4 %}
<div class="col-md-4">
<a class="button" href="/{{ previous.path }}">
<i>Spectacle suivant&nbsp;:</i><br/>
<i>Spectacle précédent&nbsp;:</i><br/>
<span class="show-link-title">{{ previous.title }}</span>
</a>
</div>
@ -34,7 +34,7 @@
{% if next %}
<div class="col-md-4 col-md-offset-{{ offset }}">
<a class="button" href="/{{ next.path }}">
<i>Spectacle précédent&nbsp;:</i><br/>
<i>Spectacle suivant&nbsp;:</i><br/>
<span class="show-link-title">{{ next.title }}</span>
</a>
</div>