Browse Source

Add a glossary

master
Luke Murphy 4 years ago
parent
commit
4fd2e5794b
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 5
      hbbs/server.py
  2. 11
      hbbs/static/css/styles.css
  3. 2
      hbbs/templates/about.html
  4. 11
      hbbs/templates/glossary.html
  5. 1
      hbbs/templates/layout.html

5
hbbs/server.py

@ -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")

11
hbbs/static/css/styles.css

@ -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;
}

2
hbbs/templates/about.html

@ -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

@ -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 %}

1
hbbs/templates/layout.html

@ -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…
Cancel
Save