This commit is contained in:
Nathan Upchurch 2024-12-03 19:11:25 -06:00
parent 7916f91751
commit ea264309f7
2 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@ eleventyComputed:
<div>
{% if picture.previousImage %}
<a href="../{{ picture.previousImage | slugify }}">
<button type="button">🡠 Previous</button>
<button type="button">Previous</button>
</a>
{% endif %}
<a href="/gallery/{{ picture.containingGallery | slugify }}/">
@ -115,7 +115,7 @@ eleventyComputed:
</a>
{% if picture.nextImage %}
<a href="../{{ picture.nextImage | slugify }}">
<button type="button">Next 🡢</button>
<button type="button">Next</button>
</a>
{% endif %}
</div>

View File

@ -15,7 +15,7 @@ eleventyComputed:
<div class="buttonContainer">
{% if picture.previousImage %}
<a href="../{{ picture.previousImage | slugify }}">
<button type="button">🡠 Previous</button>
<button type="button">Previous</button>
</a>
{% endif %}
<a href="/gallery/{{ picture.containingGallery | slugify }}/">
@ -23,7 +23,7 @@ eleventyComputed:
</a>
{% if picture.nextImage %}
<a href="../{{ picture.nextImage | slugify }}">
<button type="button">Next 🡢</button>
<button type="button">Next</button>
</a>
{% endif %}
</div>