]> Untitled Git - web-gallery.git/blobdiff - navigator/app/templates/gallery.html
Updated to version 1.6.0
[web-gallery.git] / navigator / app / templates / gallery.html
index 375ad57e94b4c0c9bf676003995ee05ef6d90ad0..d9404e08740cef6c59452c118fa5bd1007dd087d 100644 (file)
@@ -1,15 +1,21 @@
 <!DOCTYPE html>
 <html lang="en">
 <head>
-    <title>Gallery</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>Gallery</h1>
+<body class="first-color">
+    <div class="titlecard second-color">
+    <h1>{{ title }}</h1>
 
-    <ul id="navigation">
+    <ul class="card third-color" id="navigation">
     {% for gallery in galleries %}
-        <li><a href="{{ gallery }}">{{ gallery }}</a></li>
+        <li class="link fourth-color">
+            <a href="{{ gallery }}">{{ gallery }}</a>
+        </li>
     {% endfor %}
     </ul>
+    </div>
 </body>
 </html>