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