24 lines
455 B
HTML
24 lines
455 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 show in shows}}
|
|
<li>
|
|
<img src="{{show.thumbnail}}" width="120" height="214"><br><a href="../show/{{show.name}}/">{{show.proper}}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div> |