summaryrefslogtreecommitdiff
path: root/program/templates/v2/boxes/showtopic.html
blob: 93e873a9367f5df84f99f713c2ea233134b8e487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% if showtopic_list %}
    <dl id="filterbox_showtopic" class="portlet filterbox">
        <dt class="portletHeader"><span>Thema / Schwerpunkt<span></dt>
        <dd class="portletItem">
            <ul>
                {% for showtopic in showtopic_list %}
                    <li>
                        <a title="Sendungen mit dem Schwerpunkt {{ showtopic.topic }} anzeigen."
                           class="abbrev st-{{ showtopic.abbrev }}"
                           href="?showtopic={{ showtopic.slug }}">{{ showtopic.topic }}</a>
                    </li>
                {% endfor %}
            </ul>
        </dd>
    </dl>
{% endif %}