diff --git a/routes.py b/routes.py index ae7338c..a82fea0 100644 --- a/routes.py +++ b/routes.py @@ -5,3 +5,8 @@ from objects import glob # Global sharing of python objects in a manageable way @glob.app.route("/home") def home(): return render_template("home.html") + +@glob.app.route("/kvittering") +def serve_kvittering(): + return render_template("kvittering.html") + \ No newline at end of file diff --git a/templates/kvittering.html b/templates/kvittering.html new file mode 100644 index 0000000..5743bef --- /dev/null +++ b/templates/kvittering.html @@ -0,0 +1,10 @@ +{% set title = "Kvitteringer" %} + +{% extends "layout/bootstrap.html" %} + +{% block content %} + +

Tester siden!

+

KVITTERINGER FOR FAEN!

+ +{% endblock %} \ No newline at end of file