gallerydl template

This commit is contained in:
Nick Sweeting
2025-12-26 11:55:19 -08:00
parent 4fd7fcdbcf
commit 0fbcbd2616
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<!-- Fullscreen gallery view - shows image in full size -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<style>
body {
margin: 0;
padding: 0;
background: #000;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
img {
max-width: 100%;
max-height: 100vh;
object-fit: contain;
}
</style>
</head>
<body>
<img src="{{ output_path }}" alt="Gallery image">
</body>
</html>