blob: 7d8e5a81c11e33a05d1f78a793e2b5f2194e4a0f (
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
|
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;
}
a {
color: #FFFFFF;
}
hr {
color: #FFFFFF;
background-color: #FFFFFF;
height: 1px;
}
</style>
</head>
<body>
${TITLE} ${GOTO_OVERVIEW}
<hr />
END
|