19 lines
387 B
Handlebars
19 lines
387 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>photos</title>
|
|
<link rel="stylesheet" href="./extra/index.css">
|
|
</head>
|
|
<body>
|
|
<a href="/all.zip">download all photos</a>
|
|
<ul>
|
|
{{#each index}}
|
|
<li>
|
|
<a href="/{{ path.distRelativeToRoot }}"><img src="/{{ path.thumbnailRelativeToRoot }}" loading="lazy" width=100></a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</body>
|
|
</html>
|