Put the albums into a ul

This commit is contained in:
voussoir 2017-04-22 21:40:48 -07:00
parent 6ea3e67d86
commit 9302bd627d

View file

@ -18,9 +18,12 @@
<body> <body>
{{header.make_header(session=session)}} {{header.make_header(session=session)}}
<div id="content_body"> <div id="content_body">
{% for album in albums %} <h2>Albums</h2>
<div><a href="/album/{{album.id}}">{{album.display_name}}</a></div> <ul>
{% endfor %} {% for album in albums %}
<li><a href="/album/{{album.id}}">{{album.display_name}}</a></li>
{% endfor %}
</ul>
</div> </div>
</body> </body>