blob: 3a1938dfb276689455c5e5fcae8a4ec359c3b93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% if showtopics %}
<dl id="filterbox_showtopic" class="portlet filterbox">
<dt class="portletHeader"><span>Thema / Schwerpunkt<span></dt>
<dd class="portletItem">
<ul>
{% for item in showtopics %}
<li>
<a title="Sendungen mit dem Schwerpunkt {{item.topic}} anzeigen." class="abbrev st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a>
</li>
{% endfor %}
</ul>
</dd>
</dl>
{% endif %}
|