diff options
| author | Paul Buetow <paul@buetow.org> | 2022-03-06 10:02:23 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2022-03-06 10:02:23 +0000 |
| commit | 239c39f8165b727fd9ddc9ac881a00da03ffd9ac (patch) | |
| tree | b7a71e8a6a3dc308cb86e9115377d2df17cd3832 | |
| parent | 206634004fa646ed201092c10cca3262790c9bd1 (diff) | |
fix arrows
| -rw-r--r-- | share/templates/default/next.tmpl | 3 | ||||
| -rw-r--r-- | share/templates/default/prev.tmpl | 1 |
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⇒</a> + <a href='${next}.html'>Next ${MAXPREVIEWS} pictures</a> + <a href="${prev}.html" class="arrow">⇒</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">⇐</a> <a href='${prev}.html'>Previous ${MAXPREVIEWS} pictures</a> </div> END |
