-<!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">
+{% extends 'base.html' %}
- {% if header %}
- <div class="card third-color">
- {% autoescape false %}
- {{ header }}
- {% endautoescape %}
- </div>
- {% endif %}
+{% block title %}
+{{ title }}
+{% endblock %}
- <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 %}
- </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 %}