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 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 class="app-page app-page-gallery">
  10. <header class="app-page-header">
  11. <div class="container">
  12. <h1 class="app-page-header-title">
  13. <a href="index.html">{{ site_title }}</a>
  14. </h1>
  15. <div class="separator"></div>
  16. <a href="{{ site_author_website }}">par {{ site_author }}</a>
  17. </div>
  18. </header>
  19. <main class="app-page-content">
  20. <div class="container">
  21. <h2>{{ gallery.name }}</h2>
  22. <a class="link-back" href="index.html">Retour aux albums</a>
  23. <div class="gallery-photos">
  24. {% for photo in gallery.photos %}
  25. <div class="photo">
  26. <a href="{{ photo.url }}" target="_blank" rel="noreferrer">
  27. <img src="{{ photo.thumb_url }}" alt="" />
  28. </a>
  29. </div>
  30. {% endfor %}
  31. </div>
  32. </div>
  33. </main>
  34. <a class="to-the-top" href="#">Haut de page</a>
  35. </body>
  36. </html>