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.

index.html.j2 546B

12345678910111213141516171819
  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>Boop</title>
  8. </head>
  9. <body>
  10. {% for gallery in galleries -%}
  11. <div class="gallery">
  12. <a href="{{ gallery.url }}.html">
  13. <img src="{{ gallery.cover_photo.url }}" alt="" />
  14. {{ gallery.name }}
  15. </a>
  16. </div>
  17. {% endfor %}
  18. </body>
  19. </html>