Added regninger.html
This commit is contained in:
parent
59c9fbc106
commit
a3a4a51f73
|
@ -5,3 +5,7 @@ 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("/regninger")
|
||||
def serve_regninger():
|
||||
return render_template("regninger.html")
|
||||
|
|
8
templates/regninger.html
Normal file
8
templates/regninger.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{% set title = "Regninger" %}
|
||||
|
||||
{% extends "layout/bootstrap.html" %}
|
||||
|
||||
{% block content %}
|
||||
<p>Regninger :D</p>
|
||||
<p>test</p>
|
||||
{% endblock %}
|
Loading…
Reference in New Issue
Block a user