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 529B

123456789101112131415161718
  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 }} · {{ site_title }}</title>
  8. </head>
  9. <body>
  10. <h1><a href="index.html">{{ site_title }}</a></h1>
  11. <h2>{{ gallery.name }}</h2>
  12. {% for photo in gallery.photos %}
  13. <img src="{{ photo.url }}" alt="" />
  14. <p>{{ photo.name }}</p>
  15. {% endfor %}
  16. </body>
  17. </html>