]> Untitled Git - web-gallery.git/blob - navigator/app/templates/pages.html
27e02801aedc05e3212951ad5d48c24b5fab2717
[web-gallery.git] / navigator / app / templates / pages.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
11     {% if header %}
12     <div class="card second-color">
13     {% autoescape false %}
14     {{ header }}
15     {% endautoescape %}
16     </div>
17     {% endif %}
18
19     <ul class="card second-color" id="navigation">
20     {% for page in pages %}
21         <li class="link third-color"><a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a></li>
22     {% endfor %}
23     </ul>
24     </div>
25 </body>
26 </html>