]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/listen.html
General structure
[panikweb.git] / panikweb_templates / templates / listen.html
1 {% extends "base.html" %}
2 {% block bodyID %}Player{% endblock %}
3 {% block main %}
4 <div class="wrapper">
5         <ul class="small custom list columns padded">
6         {% for sound in sounds %}
7                 <li class="item ellipsis">
8                         <a href="{{ sound.url }}">
9                                 {{ sound.episode }}
10                         </a>
11                 </li>
12         {% endfor %}
13         </ul>
14 </div>
15 {% endblock %}
16