]> Untitled Git - web-gallery.git/blob - navigator/app/templates/gallery.html
Updated to version 1.6.0
[web-gallery.git] / navigator / app / templates / gallery.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4     <title>{{ title }}</title>
5     <link rel="stylesheet" type="text/css" href="static/css/colors.css" />
6     <link rel="stylesheet" type="text/css" href="static/css/index.css" />
7 </head>
8 <body class="first-color">
9     <div class="titlecard second-color">
10     <h1>{{ title }}</h1>
11
12     <ul class="card third-color" id="navigation">
13     {% for gallery in galleries %}
14         <li class="link fourth-color">
15             <a href="{{ gallery }}">{{ gallery }}</a>
16         </li>
17     {% endfor %}
18     </ul>
19     </div>
20 </body>
21 </html>