]> Untitled Git - web-gallery.git/blobdiff - navigator/app/templates/pages.html
Updated to version 1.6.0
[web-gallery.git] / navigator / app / templates / pages.html
index f74770a1d353814b700caa398534de6e63d7abfe..9b4a70de45693406664ad0bc1fe48e0d101a61e2 100644 (file)
@@ -1,23 +1,28 @@
 <!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 third-color">
     {% autoescape false %}
-    {{ description }}
+    {{ header }}
     {% endautoescape %}
-    </p>
+    </div>
     {% endif %}
 
-    <ul id="navigation">
+    <ul class="card third-color" id="navigation">
     {% for page in pages %}
-        <li><a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a></li>
+        <li class="link fourth-color">
+            <a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a>
+        </li>
     {% endfor %}
     </ul>
+    </div>
 </body>
 </html>