Files
2025-12-26 11:55:19 -08:00

29 lines
676 B
HTML

<!-- 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>