album/templates/index.tpl

19 lines
375 B
Smarty
Raw Normal View History

<!doctype html>
<html>
<head>
2016-01-31 23:15:44 +03:00
<title>{{title}}</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-01-31 23:15:44 +03:00
<h1>{{title}}</h1>
<div class="group">
2015-11-21 18:21:44 +03:00
{{#photos}}
<p class="item"><a href="/details/{{id}}"><img src="/img/{{id}}/s"></a></p>
2015-11-21 18:21:44 +03:00
{{/photos}}
</div>
</body>
</html>