-<!DOCTYPE html>
-<html lang="en">
-<head>
- <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 class="first-color">
- <div class="titlecard second-color">
- <h1>{{ title }}</h1>
+{% extends 'base.html' %}
- {% if description %}
- <p class="card second-color">
- {% autoescape false %}
- {{ description }}
- {% endautoescape %}
- </p>
- {% endif %}
+{% block title %}
+{{ title }}
+{% endblock %}
- <ul class="card second-color" id="navigation">
- {% for page in pages %}
- <li class="link third-color"><a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a></li>
- {% endfor %}
- </ul>
- </div>
-</body>
-</html>
+{% block content %}
+{% if header %}
+<div class="card third-color">
+{% autoescape false %}
+{{ header }}
+{% endautoescape %}
+</div>
+{% endif %}
+
+<ul class="card third-color" id="navigation">
+{% for page in pages %}
+ <li class="link fourth-color">
+ <a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a>
+ </li>
+{% endfor %}
+{% endblock %}