hbbs.decentral1.se/hbbs/templates/programmes.html

23 lines
731 B
HTML
Raw Normal View History

2020-04-04 20:11:06 +02:00
{% extends "layout.html" %}
{% block content %}
2020-04-05 12:36:37 +02:00
<p id="programmes-explanation">
Programmes are guides for how to assemble a list of things to watch in
sequence. We draw on the collection, finding commonalities and programming
them into a distributable form.
</p>
2020-04-05 12:04:21 +02:00
<ul id="programmes-list" class="no-style-list">
2020-04-04 20:45:54 +02:00
{% for programme in programmes %}
2020-04-04 21:34:32 +02:00
<li>
2020-04-05 12:04:21 +02:00
<h1> <a href="/programme/{{ programme.title | replace(' ', '-') | lower }}/">/{{ programme.title }}</a> </h1>
2020-04-04 21:34:32 +02:00
<h2> {{ programme.tagline }} </h2>
2020-04-05 12:04:21 +02:00
<ul id="films-list" class="no-style-list">
2020-04-04 21:34:32 +02:00
{% for film in programme.films %}
2020-04-05 12:04:21 +02:00
<li><span class="film-indent">{{ film }}</span></li>
2020-04-04 21:34:32 +02:00
{% endfor %}
</ul>
</li>
2020-04-04 20:45:54 +02:00
{% endfor %}
</ul>
2020-04-04 20:11:06 +02:00
{% endblock %}