album/templates/person.tpl

19 lines
406 B
Smarty
Raw Normal View History

2015-11-28 11:53:12 +03:00
<!doctype html>
<html>
<head>
<title>Photos with {{person.name}}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
{{{csslink}}}
2015-11-28 11:53:12 +03:00
</head>
<body>
2015-11-30 23:00:07 +03:00
{{> head}}
2016-06-30 13:15:07 +03:00
<h1>{{person.person_name}}</h1>
2015-11-28 11:53:12 +03:00
<div class="group">
2015-11-28 11:53:12 +03:00
{{#photos}}
<p class="item"><a href="/details/{{id}}"><img src="/img/{{id}}/s"></a></p>
2015-11-28 11:53:12 +03:00
{{/photos}}
</div>
</body>
</html>