photomk/photo.hbs

25 lines
637 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>{{ 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>