diff options
Diffstat (limited to 'generate_gallery.d/template.html')
-rw-r--r-- | generate_gallery.d/template.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/generate_gallery.d/template.html b/generate_gallery.d/template.html new file mode 100644 index 0000000..cf7397e --- /dev/null +++ b/generate_gallery.d/template.html @@ -0,0 +1,75 @@ +<!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></title> + <script type="text/javascript" src="fancybox/jquery-1.4.3.min.js"></script> + <script type="text/javascript" src="fancybox/jquery.mousewheel-3.0.4.pack.js"></script> + <script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.pack.js"></script> + <link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" /> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script type="text/javascript"> + $(document).ready(function() { + $("a[rel=images]").fancybox({ + 'titlePosition': 'over' + }); + }); + </script> + <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; + vertical-align: middle; + width: 212px; + padding: 20px 0; + } + + 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> |