summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-03-06 10:02:23 +0000
committerPaul Buetow <paul@buetow.org>2022-03-06 10:02:23 +0000
commit239c39f8165b727fd9ddc9ac881a00da03ffd9ac (patch)
treeb7a71e8a6a3dc308cb86e9115377d2df17cd3832
parent206634004fa646ed201092c10cca3262790c9bd1 (diff)
fix arrows
-rw-r--r--share/templates/default/next.tmpl3
-rw-r--r--share/templates/default/prev.tmpl1
2 files changed, 3 insertions, 1 deletions
diff --git a/share/templates/default/next.tmpl b/share/templates/default/next.tmpl
index 48287af..e745793 100644
--- a/share/templates/default/next.tmpl
+++ b/share/templates/default/next.tmpl
@@ -1,5 +1,6 @@
cat <<END
<div class="navigator">
- <a href='${next}.html'>Next ${MAXPREVIEWS} pictures&rArr;</a>
+ <a href='${next}.html'>Next ${MAXPREVIEWS} pictures</a>
+ <a href="${prev}.html" class="arrow">&rArr;</a>
</div>
END
diff --git a/share/templates/default/prev.tmpl b/share/templates/default/prev.tmpl
index 7c7c630..b38af64 100644
--- a/share/templates/default/prev.tmpl
+++ b/share/templates/default/prev.tmpl
@@ -1,5 +1,6 @@
cat <<END
<div class="navigator">
+ <a href="${prev}.html" class="arrow">&lArr;</a>
<a href='${prev}.html'>Previous ${MAXPREVIEWS} pictures</a>
</div>
END