album/templates/index.tpl
2015-12-06 14:42:03 +01:00

19 lines
420 B
Smarty

<!doctype html>
<html>
<head>
<title>Photo index</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="/static/photos.css" type="text/css"/>
</head>
<body>
{{> head}}
<h1>Photo index</h1>
<div class="photos">
{{#photos}}
<p><a href="/details/{{id}}"><img src="/img/{{id}}/s"></a></p>
{{/photos}}
</div>
</body>
</html>