full.html 676 B

12345678910111213141516171819202122232425262728
  1. <!-- Fullscreen gallery view - shows image in full size -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Gallery</title>
  8. <style>
  9. body {
  10. margin: 0;
  11. padding: 0;
  12. background: #000;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. min-height: 100vh;
  17. }
  18. img {
  19. max-width: 100%;
  20. max-height: 100vh;
  21. object-fit: contain;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <img src="{{ output_path }}" alt="Gallery image">
  27. </body>
  28. </html>