]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/listen.html
Merge branch 'master' into wip/side-player
[panikweb.git] / panikweb_templates / templates / listen.html
1 {% extends "base.html" %}
2 {% load paniktags %}
3 {% block toptitle %}
4 <h1 class="top">Sons</h1>
5 {% endblock %}
6 {% block nav %}
7         {% listen_nav %}
8 {% endblock %}
9 {% block main %}
10 <div class="">
11         <div class="wrapper">
12                 <ul class="padded custom list">
13                 {% for soundfile in soundfiles %}
14                         <li class="item {% if soundfile.episode.emission.categories.all.count = 0 %}nocat{% endif %} {% for category in soundfile.episode.emission.categories.all %} {{ category|slugify }}{% endfor %}">
15                           {% soundfile_resume soundfile=soundfile date=soundfile.first_diffusion %}
16                         </li>
17                 {% endfor %}
18                 </ul>
19         </div>
20 </div>
21 {% endblock %}
22