2015-11-27 00:47:39 +03:00
|
|
|
<!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"/>
|
2015-11-27 00:47:39 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-11-30 23:00:07 +03:00
|
|
|
{{> head}}
|
2015-11-27 00:47:39 +03:00
|
|
|
<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>
|
2015-11-27 00:47:39 +03:00
|
|
|
{{/photos}}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|