album/templates/person.tpl
2016-06-30 12:15:07 +02:00

19 lines
406 B
Smarty

<!doctype html>
<html>
<head>
<title>Photos with {{person.name}}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
{{{csslink}}}
</head>
<body>
{{> head}}
<h1>{{person.person_name}}</h1>
<div class="group">
{{#photos}}
<p class="item"><a href="/details/{{id}}"><img src="/img/{{id}}/s"></a></p>
{{/photos}}
</div>
</body>
</html>