</head>
<body class="first-color">
<div class="titlecard second-color">
- <h1>{{ title }}</h1>
- {% if description %}
- <p class="card second-color">
+ {% if header %}
+ <div class="card third-color">
{% autoescape false %}
- {{ description }}
+ {{ header }}
{% endautoescape %}
- </p>
+ </div>
{% endif %}
- <ul class="card second-color" id="navigation">
+ <ul class="card third-color" id="navigation">
{% for page in pages %}
- <li class="link third-color"><a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a></li>
+ <li class="link fourth-color">
+ <a href="{{ gallery }}/{{ page.number }}">{{ page.number }}</a>
+ </li>
{% endfor %}
</ul>
</div>