]> 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 dee0c852ad2c838d860ae1aa52769a59a17e9292..9b4a70de45693406664ad0bc1fe48e0d101a61e2 100644 (file)
@@ -7,19 +7,20 @@
 </head>
 <body class="first-color">
     <div class="titlecard second-color">
-    <h1>{{ title }}</h1>
 
-    {% if description %}
-    <p class="card second-color">
+    {% if header %}
+    <div class="card third-color">
     {% autoescape false %}
-    {{ description }}
+    {{ header }}
     {% endautoescape %}
-    </p>
+    </div>
     {% endif %}
 
-    <ul class="card second-color" id="navigation">
+    <ul class="card third-color" id="navigation">
     {% for page in pages %}
-        <li class="link third-color"><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>