Added regninger.html

This commit is contained in:
Emily 2019-02-25 16:29:35 +01:00
parent 59c9fbc106
commit a3a4a51f73
2 changed files with 12 additions and 0 deletions

View File

@ -5,3 +5,7 @@ from objects import glob # Global sharing of python objects in a manageable way
@glob.app.route("/home") @glob.app.route("/home")
def home(): def home():
return render_template("home.html") return render_template("home.html")
@glob.app.route("/regninger")
def serve_regninger():
return render_template("regninger.html")

8
templates/regninger.html Normal file
View File

@ -0,0 +1,8 @@
{% set title = "Regninger" %}
{% extends "layout/bootstrap.html" %}
{% block content %}
<p>Regninger :D</p>
<p>test</p>
{% endblock %}