summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorPaul C. Buetow (mars.fritz.box) <paul@buetow.org>2014-05-07 14:58:35 +0200
committerPaul C. Buetow (mars.fritz.box) <paul@buetow.org>2014-05-07 14:58:35 +0200
commit9ed5d1e65a07ec1511a6599946b39c70f6441015 (patch)
tree0b5fc4b81a7e7737fe282c41afeac8f5ffd0440a /share
parent92eb329acc9e5b1905786d96be6fe151093c98ac (diff)
more infos
Diffstat (limited to 'share')
-rw-r--r--share/templates/default/header-first-add.tmpl2
-rw-r--r--share/templates/default/header.tmpl8
-rw-r--r--share/templates/default/index-preview.tmpl2
-rw-r--r--share/templates/default/next.tmpl2
-rw-r--r--share/templates/default/prev.tmpl2
5 files changed, 8 insertions, 8 deletions
diff --git a/share/templates/default/header-first-add.tmpl b/share/templates/default/header-first-add.tmpl
index c6eed3a..f11a346 100644
--- a/share/templates/default/header-first-add.tmpl
+++ b/share/templates/default/header-first-add.tmpl
@@ -1,3 +1,3 @@
cat <<END
-<p align='right'>
+<p align='left'>
END
diff --git a/share/templates/default/header.tmpl b/share/templates/default/header.tmpl
index 0d9606a..7d8e5a8 100644
--- a/share/templates/default/header.tmpl
+++ b/share/templates/default/header.tmpl
@@ -1,10 +1,10 @@
-if [ "$IS_SUBALBUM" = yes ]; then
- TOP="<br /><br /><a href='${BACKHREF}/index.html'>Go to Album overview</a>"
+if [ "${IS_SUBALBUM}" = yes ]; then
+ GOTO_OVERVIEW="<br /><br /><a href='${BACKHREF}/index.html'>Go to Album overview</a>"
fi
cat <<END
<html>
<head>
-<title>$TITLE</title>
+<title>${TITLE}</title>
<style type="text/css">
body {
background-color: #000000;
@@ -22,6 +22,6 @@ cat <<END
</style>
</head>
<body>
-$TITLE $TOP
+${TITLE} ${GOTO_OVERVIEW}
<hr />
END
diff --git a/share/templates/default/index-preview.tmpl b/share/templates/default/index-preview.tmpl
index 909f59d..6a5dbc5 100644
--- a/share/templates/default/index-preview.tmpl
+++ b/share/templates/default/index-preview.tmpl
@@ -1,5 +1,5 @@
cat <<END
-<h2>Album ${ALBUM}</h2>
+<h2>Album ${ALBUM} (${DESCRIPTION})</h2>
<a name='${ALBUM}' href='${ALBUM}/index.html'>
<img border='0' src='${BACKHREF}/${RANDOM_THUMB}' />
</a>
diff --git a/share/templates/default/next.tmpl b/share/templates/default/next.tmpl
index a7f7c76..603ed0f 100644
--- a/share/templates/default/next.tmpl
+++ b/share/templates/default/next.tmpl
@@ -1,4 +1,4 @@
cat <<END
<br />
-<a href='${next}.html'>Next $MAXPREVIEWS pictures</a>
+<a href='${next}.html'>Next $MAXPREVIEWS pictures of current Album</a>
END
diff --git a/share/templates/default/prev.tmpl b/share/templates/default/prev.tmpl
index bdabae2..d274bcb 100644
--- a/share/templates/default/prev.tmpl
+++ b/share/templates/default/prev.tmpl
@@ -1,4 +1,4 @@
cat <<END
-<a href='${prev}.html'>Previous $MAXPREVIEWS pictures</a>
+<a href='${prev}.html'>Previous $MAXPREVIEWS pictures of current Album</a>
<p align='right'>
END