Wire up the basics

This commit is contained in:
Luke Murphy 2020-04-04 20:45:54 +02:00
parent 6a7e812a1f
commit 5305b0f49f
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
9 changed files with 66 additions and 6 deletions

1
fabfile.py vendored
View File

@ -8,5 +8,6 @@ def hbbs(c):
"""Release hbbs.decentral1.se."""
with c.cd("/var/www/hbbs"):
c.run("sudo -su www-data git pull origin master")
c.run("sudo -su www-data .venv/bin/pip install -r requirements.txt")
c.run("sudo supervisorctl restart apps:hbbs")
c.run("sudo systemctl reload nginx")

View File

@ -1,11 +1,46 @@
"""Flask server."""
from csv import DictReader
from os import listdir
from os.path import basename, dirname, splitext
from pathlib import Path
from flask import Flask, render_template
from ruamel.yaml import YAML
app = Flask(__name__)
cwd = dirname(Path(__file__).absolute())
yaml = YAML()
@app.route("/")
def home():
"""Serve the home page."""
return render_template("index.html")
def about():
return render_template("about.html")
@app.route("/programmes")
def programmes():
programmes = []
path = cwd / Path("static/programmes/")
for file in listdir(path):
with open(path / file, "r") as handle:
contents = handle.read()
loaded = yaml.load(contents)
programmes.append(loaded)
return render_template("programmes.html", programmes=programmes)
@app.route("/collection")
def collection():
collection = []
path = cwd / Path("static/csv/collection.csv")
with open(path, "r") as handle:
reader = DictReader(handle)
for row in reader:
collection.append(row)
return render_template("collection.html", collection=collection)
@app.route("/participate")
def participate():
return render_template("participate.html")

View File

@ -0,0 +1,5 @@
---
title: Point of View
tagline: Perspective makes all the difference
films:
- Rear Window

View File

@ -0,0 +1,5 @@
---
title: Retellings
tagline: Extending the story with the second film
films:
- La Jetée & 12 Monkeys

View File

@ -1,5 +1,9 @@
{% extends "layout.html" %}
{% block content %}
<p>TODO: collection page</p>
<ul>
{% for film in collection %}
<li>{{ film }}</li>
{% endfor %}
</ul>
{% endblock %}

View File

@ -14,7 +14,12 @@
</head>
<body>
<div id="navigation">
<p>TODO:navbar</p>
<ul>
<li><a href="/">About</a></li>
<li><a href="/programmes">Programmes</a></li>
<li><a href="/collection">Collection</a></li>
<li><a href="/participate">Participate</a></li>
</ul>
</div>
<div id="content">
{% block content %}{% endblock %}

View File

@ -1,5 +1,9 @@
{% extends "layout.html" %}
{% block content %}
<p>TODO: programmes page</p>
<ul>
{% for programme in programmes %}
<li>{{ programme }}</li>
{% endfor %}
</ul>
{% endblock %}

View File

@ -1,3 +1,4 @@
fabric==2.5.0
flask==1.1.1
gunicorn==20.0.4
ruamel.yaml==0.16.10