Put the albums into a ul
This commit is contained in:
parent
6ea3e67d86
commit
9302bd627d
1 changed files with 6 additions and 3 deletions
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue