1234567891011121314151617181920212223242526272829303132333435363738 |
- <!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 -%}
- <div class="gallery-cover">
- <a href="{{ gallery.url }}.html">
- <img src="{{ gallery.cover_photo.thumb_url }}" alt="" />
- <span class="gallery-cover-name">
- {{ gallery.name }}
- </span>
- </a>
- </div>
- {% endfor %}
- </div>
- </div>
- </main>
- </body>
- </html>
|