]> Untitled Git - web-gallery.git/blob - navigator/app/templates/gallery.html
916ebef7830a9fbd77ffbc984c99656e90bc521d
[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" id="navigation">
13     {% for gallery in galleries %}
14         <li class="link third-color"><a href="{{ gallery }}">{{ gallery }}</a></li>
15     {% endfor %}
16     </ul>
17     </div>
18 </body>
19 </html>