21 lines
691 B
Smarty
21 lines
691 B
Smarty
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Photo details</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
{{{csslink}}}
|
|
</head>
|
|
<body>
|
|
{{> head}}
|
|
<h1>Photo details</h1>
|
|
|
|
<p><a href="/img/{{photo.id}}/l">{{photo.path}}</a></p>
|
|
<p><img src="/img/{{photo.id}}/m"></p>
|
|
{{#photo.grade}}<p>Betyg: {{.}}</p>{{/photo.grade}}
|
|
{{#photo}}<p>Tid: {{date}}</p>{{/photo}}
|
|
<p>People: {{#people}}<a href="/person/{{slug}}">{{person_name}}</a>, {{/people}}</p>
|
|
<p>Places: {{#places}}<a href="/place/{{slug}}">{{place}}</a>, {{/places}}</p>
|
|
<p>Tags: {{#tags}}<a href="/tag/{{slug}}">{{tag_name}}</a>, {{/tags}}</p>
|
|
</body>
|
|
</html>
|