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