blob: 564d547e467d53794d4ae9ab48b4cdee720af1c8 (
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
|
if [ "${is_subalbum}" = yes ]; then
GOTO_OVERVIEW="<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;
}
</style>
</head>
<body>
<h1>${TITLE}</h1>
<p>${GOTO_OVERVIEW}</p>
<div>
END
|