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