-<!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 %}