album/templates/index.tpl
Rasmus Kaj 5c5ac376c8 List photos for a tag.
And of course some rewriting of everything ...
2015-11-26 22:47:39 +01:00

18 lines
362 B
Smarty

<!doctype html>
<html>
<head>
<title>Photo index</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<h1>Photo index</h1>
<p>How nice is this?</p>
<div class="photos">
{{#photos}}
<p><a href="/details/{{id}}"><img src="/icon/{{id}}"></a></p>
{{/photos}}
</div>
</body>
</html>