album/templates/tag.tpl

19 lines
393 B
Smarty
Raw Normal View History

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