This is a gentle fork from https://framagit.org/marienfressinaud/photos.marienfressinaud.fr with a responsive and optimized mindset. https://media.larlet.fr/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gallery.html.j2 457B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="initial-scale=1.0" />
  6. <link rel="stylesheet" href="style/main.css">
  7. <title>{{ gallery.name }} · Boop</title>
  8. </head>
  9. <body>
  10. <h1>{{ gallery.name }}</h1>
  11. {% for photo in gallery.photos %}
  12. <img src="{{ photo.url }}" alt="" />
  13. <p>{{ photo.name }}</p>
  14. {% endfor %}
  15. </body>
  16. </html>