-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNatürlich.SH Gästeliste
67 lines (63 loc) · 2.65 KB
/
Natürlich.SH Gästeliste
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{#
This template displays guests of the podcast in a HTML 5 compliant way. It uses the flexbox-design and lists all episodes with
this particular contributor as well.
#}
<p>Ein Podcast wie Natürlich.SH ist nur so gut wie seine Gäste. Unsere bislang {{ podcast.contributors({role: 'experte'})|length }} Expert*innen erklären Schleswig-Holstein aus dem FF, während wir nur staunend vor manchen Dingen stehen und ganz viele Fragen haben. Für spontanes Zeit nehmen, zustimmen und mitmachen danken wir: </p>
<div class="container">
{% for contributor in podcast.contributors({role: 'experte'}) %}
<div class="mod">
<div class="item" style="width:30%">
{{ contributor.image.html({width: 300, height: 300, alt: contributor.name, title: contributor.name}) }}
</div>
<div class="item" style="font-family:Kanit;font-weight:bold">{{ contributor.name }}</div>
<div class="item" style="font-family:Kanit;font-size: small">{{ contributor.organisation }}</div>
<div class="item">
{% for service in contributor.services({category: "social"}) %}
<a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}" style="color:white">
{{ service.image.html({width: 20, height: 20, alt: service.name}) }}
</a>
{% endfor %}
{% for service in contributor.services({category: "donation"}) %}
<a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}" style="color:white">
{{ service.image.html({width: 20, height: 20, alt: service.name}) }}
</a>
{% endfor %}
</div>
<div class="item">
{% for episode in contributor.episodes %}
<span class="cont_ep"><a href="{{ episode.url }}" style="color: black">{{ episode.slug }}</a></span>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<style>
.container {
display: flex;
justify-content: flex-start;
align-items: flex-start;
gap: 1em 2em;
flex-flow: row wrap;
}
.mod {
display: flex;
justify-content: flex-start;
align-items: center;
flex-flow: column wrap;
}
.item {
display: flex;
justify-content: center;
align-items: center;
gap: 3px;
flex-flow: row wrap;
}
.cont_ep {
background-color: #cccccc;
padding: 8px;
margin: 4px;
font-family: Kanit;
font-weight: bold;
font-size: small;
}
</style>