25 lines
500 B
Smarty
25 lines
500 B
Smarty
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{title}}</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
{{{csslink}}}
|
|
</head>
|
|
<body>
|
|
{{> head}}
|
|
<h1>{{title}}</h1>
|
|
|
|
<div class="group">
|
|
{{#groups}}
|
|
<div class="item"><h2>{{title}}</h2>
|
|
<p><a href="{{url}}"><img src="/img/{{photo.id}}/s"></a></p>
|
|
<p>{{count}} pictures</p>
|
|
</div>
|
|
{{/groups}}
|
|
{{^groups}}
|
|
<p>Inga bilder.</p>
|
|
{{/groups}}
|
|
</div>
|
|
</body>
|
|
</html>
|