summaryrefslogtreecommitdiffstats
path: root/templates/image_page_template.html
blob: d0fc4b29d5621f7a3b24a3106ff41f8f0a50913a (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<title>
{{ header }}
</title>
<link rel="stylesheet" type="text/css" href="/css/main2.css" />
</head>

<body>
<H1>{{ header }}</H1>
<div class="centre"><img alt="" src="{{ filepath }}" />
</div>

<p>{{ description|safe }}</p>

{% if photographer %}
<p class="caption">Photo &copy; {{ photographer }}{% if year %}, {{ year }}{% endif %}</p>
{% endif %}

<hr />
</body>
</html>