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