summaryrefslogtreecommitdiff
path: root/program/templates/v2/host_list.html
blob: b2c1542baa525f7b820dcc20bc458c7c424941cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
    <title>Sendungsmacherinnen &mdash; Radio Helsinki - Freies Radio Graz</title>
</head>
<body>

<div id="content-main" class="host-list">
    <h1>Sendungsmachende A-Z</h1>
    <div id="hosts">
{% for host in host_list %}
        <div class="host"><a href="/program/hosts/{{ host.id }}">{{ host.name }}</a></div>
{% endfor %}
    </div>
</div>

</body>
</html>