album/templates/place.tpl

19 lines
404 B
Smarty
Raw Normal View History

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