summaryrefslogtreecommitdiff
path: root/share/templates/default/header.tmpl
blob: b25143bf56079e5734a705c09dc45c8eb74a726f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
<style type="text/css">
  body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: verdana, sans-serif;
    width: 100%;
  }
  a {
    color: #FFFFFF;
  }
  hr {
    color: #FFFFFF;
    background-color: #FFFFFF;
    height: 1px;
  }
</style>
</head>
<body>
${TITLE} ${GOTO_OVERVIEW}
<hr />
END