tesses-cms/Tesses.CMS/Assets/AlbumsPage.html

24 lines
461 B
HTML

<div class="container-fluid">
<!--thanks to https://stackoverflow.com/a/21678797-->
<style>
ul {
text-decoration: none;
}
li {
display: inline-block;
vertical-align: top;
}
</style>
<ul>
{{for album in albums}}
<li>
<img src="{{album.thumbnail}}" width="120" height="120"><br><a href="../album/{{album.name}}/">{{album.proper}}</a>
</li>
{{ end }}
</ul>
</div>