diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-10 16:12:04 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-10 16:12:04 (GMT) |
commit | 79ac160f239937bb4beb982e2cab2020d4eac9d1 (patch) | |
tree | 8903f878fc9ed60f72c66396ee6024500cce92f5 /program/templates/v2/host_detail.html | |
parent | 3fbaa0794ccbb16ae8053537f34859c7736dc85f (diff) |
update some more templates for new homepage
Diffstat (limited to 'program/templates/v2/host_detail.html')
-rw-r--r-- | program/templates/v2/host_detail.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/templates/v2/host_detail.html b/program/templates/v2/host_detail.html index 792a0a3..0dff882 100644 --- a/program/templates/v2/host_detail.html +++ b/program/templates/v2/host_detail.html @@ -5,12 +5,12 @@ <body> <div id="content-main" class="host-detail"> - <div id="name">{{ host.name }}</div> + <h1>{{ host.name }}</h1> <div id="shows"> <div id="shows-title">Sendungen</div> {% for show in host.active_shows %} - <div class="show {{ show.broadcastformat.slug }}"><a href="/program/shows/{{ show.slug }}"> {{ show.name }}</a></div> + <div class="show bf-{{ show.broadcastformat.slug }}"><a href="/program/shows/{{ show.slug }}"> {{ show.name }}</a></div> {% endfor %} </div> {% if host.email %} |