summaryrefslogtreecommitdiff
path: root/share/templates/default/header.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'share/templates/default/header.tmpl')
-rw-r--r--share/templates/default/header.tmpl8
1 files changed, 4 insertions, 4 deletions
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