photomk/photo.hbs
2025-02-20 12:17:27 +01:00

28 lines
966 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ path.name }}</title>
<link rel="stylesheet" href="./extra/fonts/source-sans-pro.css">
<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.ExposureTime.num }}{{ exif.ExposureTime.denom }}</strong> s<br>
aperture <strong>f{{ exif.FNumber.f64 }}</strong><br>
iso <strong>{{ exif.PhotographicSensitivity }}</strong><br>
resolution <strong>{{ exif.PixelXDimension }}x{{ exif.PixelYDimension }}</strong>
</p>
</div>
</div>
</body>
</html>