Add a glossary
This commit is contained in:
parent
4bc5b12967
commit
4fd2e5794b
@ -62,6 +62,11 @@ def collection():
|
||||
return render_template("collection.html", collection=collection)
|
||||
|
||||
|
||||
@app.route("/glossary")
|
||||
def glossary():
|
||||
return render_template("glossary.html")
|
||||
|
||||
|
||||
@app.route("/participate")
|
||||
def participate():
|
||||
return render_template("participate.html")
|
||||
|
@ -48,6 +48,11 @@ ul {
|
||||
color: magenta;
|
||||
}
|
||||
|
||||
#glossary-list li::before {
|
||||
content: " ⃝ ";
|
||||
color: magenta;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
}
|
||||
@ -78,7 +83,11 @@ ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#programmes-list li:nth-child(2) {
|
||||
#glossary-list li:nth-child(n + 2) {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#programmes-list li:nth-child(n + 2) {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<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
|
||||
made by viewers, for viewers. Our programmes are curated playlists of films
|
||||
in our collection. Playlists that encourage play, sociality through the
|
||||
things we share. Download a programme, watch it, make a programme, share it.
|
||||
</p>
|
||||
|
11
hbbs/templates/glossary.html
Normal file
11
hbbs/templates/glossary.html
Normal file
@ -0,0 +1,11 @@
|
||||
{% extends "layout.html" %}
|
||||
|
||||
{% block content %}
|
||||
<ul class="no-style-list" id="glossary-list">
|
||||
<li><span>home:</span> The place where we spend our time, alone or together.</li>
|
||||
<li><span>brewing:</span> Concocting, devising, fermenting, developing cultures.</li>
|
||||
<li><span>homebrew:</span> Cultures developed by ourselves, independent of commercial products and services.</li>
|
||||
<li><span>bioscoop:</span> A Dutch word for "cinema", ultimately from Ancient Greek βίος (bíos, “bio-, life”) + σκοπέω (skopéō, “I look at”), thus roughly “watching life”. A bioscoop: a place to watch life happen.</li>
|
||||
<li><span>programmes:</span> Genres are too generic, so we make programmes instead. To one, the film Soylent Green might be part of a programme on 20th Century Dystopic Sci-fi, and to another, one about food. Cross-references are the threads between programmes, this is where our sociality thrives; we share our individual perspectives and tastes in common on things we like to watch.</li>
|
||||
</ul>
|
||||
{% endblock %}
|
@ -39,6 +39,7 @@
|
||||
<li><a href="/programmes">Programmes</a></li>
|
||||
<li><a href="/collection">Collection</a></li>
|
||||
<li><a href="/participate">Participate</a></li>
|
||||
<li><a href="/glossary">Glossary</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="content" class="col-md-4">
|
||||
|
Loading…
Reference in New Issue
Block a user