photomk/photo.hbs
2025-02-20 14:18:04 +01:00

27 lines
1.0 KiB
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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 }}×{{ exif.PixelYDimension }}</strong>
</p>
</div>
</div>
</body>
</html>