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

1234567891011121314151617181920212223242526272829303132333435363738
  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>{{ site_title }}</title>
  8. </head>
  9. <body class="app-page app-page-index">
  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>Albums</h2>
  22. <div class="galleries">
  23. {% for gallery in galleries -%}
  24. <div class="gallery-cover">
  25. <a href="{{ gallery.url }}">
  26. <img src="{{ gallery.cover_photo.thumb_url }}" alt="" />
  27. <span class="gallery-cover-name">
  28. {{ gallery.name }}
  29. </span>
  30. </a>
  31. </div>
  32. {% endfor %}
  33. </div>
  34. </div>
  35. </main>
  36. </body>
  37. </html>