]> Untitled Git - web-gallery.git/blob - app/templates/gallery.html
Serves nested pages in a gallery
[web-gallery.git] / app / templates / gallery.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4     <title>Gallery</title>
5 </head>
6 <body>
7     <h1>Gallery</h1>
8
9     <ul id="navigation">
10     {% for gallery in galleries %}
11         <li><a href="{{ gallery }}">{{ gallery }}</a></li>
12     {% endfor %}
13     </ul>
14 </body>
15 </html>