2015-11-22 15:01:39 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Photo details</title>
|
2015-11-27 00:47:39 +03:00
|
|
|
<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"/>
|
2015-11-22 15:01:39 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Photo details</h1>
|
|
|
|
<p>{{photo.path}}</p>
|
|
|
|
<p><img src="/view/{{photo.id}}"></p>
|
2015-11-28 11:53:12 +03:00
|
|
|
<p>People: {{#people}}<a href="/person/{{slug}}">{{name}}</a>, {{/people}}</p>
|
2015-11-23 08:48:09 +03:00
|
|
|
<p>Tags: {{#tags}}<a href="/tag/{{slug}}">{{tag}}</a>, {{/tags}}</p>
|
2015-11-22 15:01:39 +03:00
|
|
|
</body>
|
|
|
|
</html>
|