Luke Murphy
5 years ago
8 changed files with 77 additions and 17 deletions
@ -1,5 +1,11 @@ |
|||
{% extends "layout.html" %} |
|||
|
|||
{% block content %} |
|||
<p>TODO: home page</p> |
|||
<p> |
|||
This isn’t another link dump, nor is it an all-you-can-eat streaming site. We |
|||
have files and we want to share them. The homebrew bioscoop offers programmes |
|||
made by viewers, for viewers. Our programmes are cu- rated playlists of films |
|||
in our collection. Playlists that en- courage play, sociality through the |
|||
things we share. Download a programme, watch it, make a programme, share it. |
|||
</p> |
|||
{% endblock %} |
|||
|
@ -1,5 +1,5 @@ |
|||
{% extends "layout.html" %} |
|||
|
|||
{% block content %} |
|||
<p>TODO: participate page</p> |
|||
<p>Invite only for now...</p> |
|||
{% endblock %} |
|||
|
@ -0,0 +1,12 @@ |
|||
{% extends "layout.html" %} |
|||
|
|||
{% block content %} |
|||
<h1> <a href="/programme/{{ programme.title | replace(' ', '-') | lower }}">{{ programme.title }}</a> </h1> |
|||
<h2> {{ programme.tagline }} </h2> |
|||
<ul> |
|||
{% for film in programme.films %} |
|||
<li>{{ film }}</li> |
|||
{% endfor %} |
|||
</ul> |
|||
<a href="/programmes">All programmes...</a> |
|||
{% endblock %} |
Loading…
Reference in new issue