diff options
author | Florian Pritz <bluewind@xssn.at> | 2009-10-13 16:53:39 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2009-10-13 16:53:39 +0200 |
commit | 75df9781ed50760a157d667d74aef3a7bcbd6357 (patch) | |
tree | 79e26d917e6896163adcec3e721c06e8a5c64a84 /template.html | |
parent | a56b3ab0b8428a380d9918f27a68210309e6892b (diff) | |
download | bin-75df9781ed50760a157d667d74aef3a7bcbd6357.tar.gz bin-75df9781ed50760a157d667d74aef3a7bcbd6357.tar.xz |
add generate-gallery.sh
this needs template.html
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..b1fc818 --- /dev/null +++ b/template.html @@ -0,0 +1,63 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + +<head> + <title>Fotogalerie</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <style type="text/css"> + html { + min-height: 100%; + background-color: #44AFE3; + } + + * { + margin: 0; + padding: 0; + } + + a { + text-decoration: none; + color: #048; + } + + a:hover { + color: #06C; + } + + img { + border:0; + } + + .thumbnail { + line-height: 0; + } + + div.thumbnail { + display: inline-block; + text-align: center; + height: 200px; + width: 212px; + } + + img.thumbnail { + margin:2px; + border: 1px solid #fff; + } + + body { + color: #444; + font-family: "Bitstream Vera Sans", Monospace; + margin-top: 30px; + text-align: center; + } + </style> +</head> + +<body> + <a href="../">Übersicht</a><br /> + %%CONTENT%% + <br /> + <a href="../">Übersicht</a> +</body> + +</html> |