+{% 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 %}