album/templates/tag.tpl

19 lines
434 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" />
2015-11-27 01:20:36 +03:00
<link rel="stylesheet" href="/static/photos.css" type="text/css"/>
</head>
<body>
2015-11-30 23:00:07 +03:00
{{> head}}
<h1>{{tag.tag}}</h1>
<div class="photos">
{{#photos}}
2015-12-06 16:42:03 +03:00
<p><a href="/details/{{id}}"><img src="/img/{{id}}/s"></a></p>
{{/photos}}
</div>
</body>
</html>