2015-11-22 15:01:39 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Photo details</title>
|
2015-11-27 00:47:39 +03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
2015-11-27 01:20:36 +03:00
|
|
|
<link rel="stylesheet" href="/static/photos.css" type="text/css"/>
|
2015-11-22 15:01:39 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-11-30 23:00:07 +03:00
|
|
|
{{> head}}
|
2015-11-22 15:01:39 +03:00
|
|
|
<h1>Photo details</h1>
|
2015-11-30 23:00:07 +03:00
|
|
|
|
2015-12-06 16:42:03 +03:00
|
|
|
<p><a href="/img/{{photo.id}}/l">{{photo.path}}</a></p>
|
|
|
|
<p><img src="/img/{{photo.id}}/m"></p>
|
2015-11-29 22:06:11 +03:00
|
|
|
{{#photo.grade}}<p>Betyg: {{.}}</p>{{/photo.grade}}
|
2015-12-25 20:32:11 +03:00
|
|
|
{{#photo.date}}<p>
|
|
|
|
<a href="/{{year}}/">{{year}}</a>-<a
|
|
|
|
href="/{{year}}/{{month}}/">{{month}}</a>-<a
|
|
|
|
href="/{{year}}/{{month}}/{{day}}">{{day}}</a>
|
|
|
|
{{time}}</p>{{/photo.date}}
|
2015-11-28 11:53:12 +03:00
|
|
|
<p>People: {{#people}}<a href="/person/{{slug}}">{{name}}</a>, {{/people}}</p>
|
2015-11-30 00:38:40 +03:00
|
|
|
<p>Places: {{#places}}<a href="/place/{{slug}}">{{place}}</a>, {{/places}}</p>
|
2015-11-23 08:48:09 +03:00
|
|
|
<p>Tags: {{#tags}}<a href="/tag/{{slug}}">{{tag}}</a>, {{/tags}}</p>
|
2015-11-22 15:01:39 +03:00
|
|
|
</body>
|
|
|
|
</html>
|