]> Untitled Git - web-gallery.git/blobdiff - navigator/app/templates/gallery.html
Updated to 1.7.0
[web-gallery.git] / navigator / app / templates / gallery.html
index 375ad57e94b4c0c9bf676003995ee05ef6d90ad0..72c7f33b76b27d06d4e94583f68ae675c4602400 100644 (file)
@@ -1,15 +1,17 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-    <title>Gallery</title>
-</head>
-<body>
-    <h1>Gallery</h1>
+{% extends 'base.html' %}
 
-    <ul id="navigation">
-    {% for gallery in galleries %}
-        <li><a href="{{ gallery }}">{{ gallery }}</a></li>
-    {% endfor %}
-    </ul>
-</body>
-</html>
+{% block title %}
+{{ title }}
+{% endblock %}
+
+{% block content %}
+<h1>{{ title }}</h1>
+
+<ul class="card third-color" id="navigation">
+{% for gallery in galleries %}
+    <li class="link fourth-color">
+        <a href="{{ gallery }}">{{ gallery }}</a>
+    </li>
+{% endfor %}
+</ul>
+{% endblock %}