]> git.0d.be Git - panikweb-esperanzah.git/blob - panikweb_esperanzah/templates/archives.html
adjust animations
[panikweb-esperanzah.git] / panikweb_esperanzah / templates / archives.html
1 {% extends "base.html" %}
2 {% load thumbnail %}
3
4 {% block title %}Archives{% endblock %}
5
6 {% block toptitle %}
7 {% endblock %}
8
9 {% block main %}
10   <h2 class="top">Archives de la radio</h2>
11
12   {% regroup diffusions by datetime|date:"Y" as diffusions_by_year %}
13   {% for diffusion_group in diffusions_by_year %}
14     <h3 class="archives" id="archive-{{diffusion_group.grouper}}">
15       {% if diffusion_group.grouper == "2023" %}2023 depuis le village des possibles !
16       {% elif diffusion_group.grouper == "2022" %}2022 chaude ambiance !
17       {% elif diffusion_group.grouper == "2021" %}2021 petit Esperanzah en podcasts !
18       {% elif diffusion_group.grouper == "2019" %}2019 c’était super !
19       {% elif diffusion_group.grouper == "2018" %}L'énergie de 2018 !
20       {% elif diffusion_group.grouper == "2017" %}Réécoutez 2017 !
21       {% elif diffusion_group.grouper == "2016" %}Revivez 2016 !
22       {% elif diffusion_group.grouper == "2015" %}Retournez en 2015 !
23       {% elif diffusion_group.grouper == "2014" %}Redécouvrez 2014 !
24       {% elif diffusion_group.grouper == "2013" %}Plongez en 2013 !
25       {% elif diffusion_group.grouper == "2012" %}Rappelez-vous 2012 !
26       {% elif diffusion_group.grouper == "2011" %}Rejouez 2011 !
27       {% elif diffusion_group.grouper == "2010" %}Sautez vers 2010 !
28       {% else %}{{ diffusion_group.grouper }}{% endif %}</h3>
29
30     {% if diffusion_group.grouper == "2021" %}
31       <p>
32         Détour vers le futur, une série de podcasts réalisés au
33         printemps; avant la joie qu’un petit festival ait lieu.
34       </p>
35     {% endif %}
36
37     <div class="archives emission-episodes">
38       {% for diffusion in diffusion_group.list|dictsort:"datetime" %}
39         <a href="{% url 'episode-view' emission_slug=diffusion.episode.emission.slug slug=diffusion.episode.slug %}">
40           <div class="image  {% cycle 'style1' 'style2' 'style3' %}">
41             <div class="img">
42               {% thumbnail diffusion.episode.image "400x400" crop="50% 50%" as im %}
43                 <img alt="" loading="lazy" src="{{im.url}}">
44               {% empty %}
45                 <img alt="" class="empty" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8nez3HwAGugKtHMIYIwAAAABJRU5ErkJggg==" height="200" width="200">
46               {% endthumbnail %}
47             </div>
48           </div>
49           <div class="name"><span>{% if diffusion.episode.emission.slug == "detour-vers-le-futur" %}Détour vers le futur - {% endif %}{{ diffusion.episode.title }}</span></div>
50         </a>
51       {% endfor %}
52     </div>
53     {% if diffusion_group.grouper == "2021" %}
54       <h3 class="archives">2020, édition annulée</h3>
55       <p><a href="https://www.esperanzah.be/annulation/">Un été sans festival comme un vide abyssal.</a></p>
56     {% endif %}
57   {% endfor %}
58
59   <p class="archives-sorry">
60     Nos archives se terminent ici, les premières années de radio Esperanzah!
61     sont dans nos cœurs… 💕
62   </p>
63
64 {% endblock %}