16 lines
497 B
Smarty
16 lines
497 B
Smarty
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Photo details</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<link rel="stylesheet" href="/static/photos.css" type="text/css"/>
|
|
</head>
|
|
<body>
|
|
<h1>Photo details</h1>
|
|
<p>{{photo.path}}</p>
|
|
<p><img src="/view/{{photo.id}}"></p>
|
|
<p>People: {{#people}}<a href="/person/{{slug}}">{{name}}</a>, {{/people}}</p>
|
|
<p>Tags: {{#tags}}<a href="/tag/{{slug}}">{{tag}}</a>, {{/tags}}</p>
|
|
</body>
|
|
</html>
|