]> purplebirdman git - web-gallery.git/blobdiff - navigator/app/templates/pages.html
Updated to version 1.5.0
[web-gallery.git] / navigator / app / templates / pages.html
index f74770a1d353814b700caa398534de6e63d7abfe..27e02801aedc05e3212951ad5d48c24b5fab2717 100644 (file)
@@ -1,23 +1,26 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-    <title>Pages</title>
+    <title>{{ title }}</title>
+    <link rel="stylesheet" type="text/css" href="static/css/colors.css" />
+    <link rel="stylesheet" type="text/css" href="static/css/index.css" />
 </head>
-<body>
-    <h1>Pages</h1>
+<body class="first-color">
+    <div class="titlecard second-color">
 
-    {% if description %}
-    <p>
+    {% if header %}
+    <div class="card second-color">
     {% autoescape false %}
-    {{ description }}
+    {{ header }}
     {% endautoescape %}
-    </p>
+    </div>
     {% endif %}
 
-    <ul id="navigation">
+    <ul class="card second-color" id="navigation">
     {% for page in pages %}
-        <li><a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a></li>
+        <li class="link third-color"><a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a></li>
     {% endfor %}
     </ul>
+    </div>
 </body>
 </html>