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