26 lines
767 B
Handlebars
26 lines
767 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ path.name }}</title>
|
|
<link rel="stylesheet" href="./extra/photo.css">
|
|
</head>
|
|
<body>
|
|
<div class="my-epic-layout">
|
|
<div class="picture-frame">
|
|
<img src="./{{ path.relativeToRoot }}" alt="{{ path.name }}">
|
|
</div>
|
|
<div class="text-frame">
|
|
<h1>{{ path.name }}</h2>
|
|
<p><a href="./{{ navigation.previous }}">prev</a> · <a href="./{{ navigation.next }}">next</a> · <a href=".">up</a></p>
|
|
<p>{{ exif.datetime }}</p>
|
|
<p>
|
|
exposure time <strong>{{ exif.exposure_time }}s</strong><br>
|
|
aperture <strong>f{{ exif.aperture_value }}</strong><br>
|
|
iso <strong>{{ exif.photographic_sensitivity }}</strong>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|