28 lines
741 B
Handlebars
28 lines
741 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>photos</title>
|
|
<link rel="stylesheet" href="./extra/index.css">
|
|
</head>
|
|
<body>
|
|
<header class="container">
|
|
<h1>photo gallery</h1>
|
|
<a class="download-button" href="./all.zip">download all</a>
|
|
</header>
|
|
<ul class="container photo-cards">
|
|
{{#each index}}
|
|
<li class="photo-card">
|
|
<a class="photo-card-wrapper" href="./{{ path.distRelativeToRoot }}">
|
|
<div class="photo-card-image">
|
|
<img src="./{{ path.thumbnailRelativeToRoot }}" loading="lazy" width=100>
|
|
</div>
|
|
<div class="photo-card-label">{{ key }}</div>
|
|
</a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
<footer class="container">all photos © paul brinkmeier</footer>
|
|
</body>
|
|
</html>
|