]> Untitled Git - web-gallery.git/blob - navigator/app/templates/gallery.html
Updated to 1.7.0
[web-gallery.git] / navigator / app / templates / gallery.html
1 {% extends 'base.html' %}
2
3 {% block title %}
4 {{ title }}
5 {% endblock %}
6
7 {% block content %}
8 <h1>{{ title }}</h1>
9
10 <ul class="card third-color" id="navigation">
11 {% for gallery in galleries %}
12     <li class="link fourth-color">
13         <a href="{{ gallery }}">{{ gallery }}</a>
14     </li>
15 {% endfor %}
16 </ul>
17 {% endblock %}