123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1.0" />
- <link rel="stylesheet" href="style/main.css">
- <title>{{ gallery.name }} · {{ site_title }}</title>
- </head>
- <body class="app-page app-page-gallery">
- <header class="app-page-header">
- <div class="container">
- <h1 class="app-page-header-title">
- <a href="index.html">{{ site_title }}</a>
- </h1>
- <div class="separator"></div>
- <a href="{{ site_author_website }}">par {{ site_author }}</a>
- </div>
- </header>
-
- <main class="app-page-content">
- <div class="container">
- <h2>{{ gallery.name }}</h2>
- <a class="link-back" href="index.html">Retour aux albums</a>
-
- <div class="gallery-photos">
- {% for photo in gallery.photos %}
- <div class="photo">
- <a href="{{ photo.url }}" target="_blank" rel="noreferrer">
- <img src="{{ photo.thumb_url }}" alt="" />
- </a>
- </div>
- {% endfor %}
- </div>
- </div>
- </main>
-
- <a class="to-the-top" href="#">Haut de page</a>
- </body>
- </html>
|