album/templates/groups.tpl

25 lines
500 B
Smarty
Raw Normal View History

2016-01-31 23:15:44 +03:00
<!doctype html>
<html>
<head>
<title>{{title}}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
{{{csslink}}}
2016-01-31 23:15:44 +03:00
</head>
<body>
{{> head}}
<h1>{{title}}</h1>
<div class="group">
2016-01-31 23:15:44 +03:00
{{#groups}}
<div class="item"><h2>{{title}}</h2>
2016-01-31 23:15:44 +03:00
<p><a href="{{url}}"><img src="/img/{{photo.id}}/s"></a></p>
<p>{{count}} pictures</p>
</div>
{{/groups}}
2016-06-30 17:39:01 +03:00
{{^groups}}
<p>Inga bilder.</p>
{{/groups}}
2016-01-31 23:15:44 +03:00
</div>
</body>
</html>