album/templates/index.tpl

19 lines
419 B
Smarty
Raw Normal View History

<!doctype html>
<html>
<head>
2015-11-21 18:21:44 +03:00
<title>Photo index</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"/>
</head>
<body>
2015-11-30 23:00:07 +03:00
{{> head}}
2015-11-21 18:21:44 +03:00
<h1>Photo index</h1>
<div class="photos">
2015-11-21 18:21:44 +03:00
{{#photos}}
2015-11-22 15:01:39 +03:00
<p><a href="/details/{{id}}"><img src="/icon/{{id}}"></a></p>
2015-11-21 18:21:44 +03:00
{{/photos}}
</div>
</body>
</html>