album/templates/details.tpl

20 lines
687 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" />
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-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>