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

14 lines
343 B
Smarty

<!doctype html>
<html>
<head>
<title>Photo details</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<h1>Photo details</h1>
<p>{{photo.path}}</p>
<p><img src="/view/{{photo.id}}"></p>
<p>Tags: {{#tags}}<a href="/tag/{{slug}}">{{tag}}</a>, {{/tags}}</p>
</body>
</html>