album/templates/details.tpl

25 lines
844 B
Smarty
Raw Normal View History

2015-11-22 15:01:39 +03:00
<!doctype html>
<html>
<head>
<title>Photo details</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
{{{csslink}}}
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>
<p>Places: {{#places}}<a href="/place/{{slug}}">{{place}}</a>, {{/places}}</p>
<p>Tags: {{#tags}}<a href="/tag/{{slug}}">{{tag}}</a>, {{/tags}}</p>
2015-11-22 15:01:39 +03:00
</body>
</html>