photomk/index.hbs
2025-02-15 02:29:41 +01:00

18 lines
317 B
Handlebars

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>photos</title>
<link rel="stylesheet" href="./extra/index.css">
</head>
<body>
<ul>
{{#each this}}
<li>
<a href="/{{ path.distRelativeToRoot }}"><img src="/{{ path.relativeToRoot }}" width=100></a>
</li>
{{/each}}
</ul>
</body>
</html>