12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1.0" />
- <link rel="stylesheet" href="style/main.css">
- <title>{{ site_title }}</title>
- </head>
- <body class="app-page app-page-index">
- <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>Albums</h2>
- <div class="galleries">
- {% for gallery in galleries -%}
- {% if not gallery.private %}
- <div class="gallery-cover">
- <a href="{{ gallery.url }}">
- <img src="{{ gallery.cover_photo.thumb_url }}" alt="" />
- <span class="gallery-cover-name">
- {{ gallery.name }}
- </span>
- </a>
- </div>
- {% endif %}
- {% endfor %}
- </div>
- </div>
- </main>
- </body>
- </html>
|