blob: 3dd7e88ae7ea4484297ee645f13354f10848449b (
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 class="filteritem st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a>
</li>
{% endfor %}
</ul>
</dd>
</dl>
{% endif %}
|