Files
static-photos-page/template.html

27 lines
451 B
HTML
Raw Normal View History

2026-06-18 17:06:52 +01:00
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<title>Photos</title>
2026-08-11 17:06:51 +01:00
<style>
2026-08-11 17:18:17 +01:00
html {
2026-08-11 17:22:16 +01:00
background-image: src("../images/photos.png");
2026-08-11 17:18:17 +01:00
}
2026-08-11 17:06:51 +01:00
main {
display: flex;
flex-wrap: wrap;
}
</style>
2026-06-18 17:06:52 +01:00
</head>
<body>
<h1>Photos</h1>
<main>
%s
</main>
</body>
</html>