im a donkey

This commit is contained in:
Nabeel 2019-02-25 16:46:17 +01:00
commit bfb9ce1b84
2 changed files with 25 additions and 1 deletions

View File

@ -8,4 +8,17 @@ def home():
@glob.app.route("/testing")
def we_are_testing():
return render_template("testing.html")
return render_template("testing.html")
@glob.app.route("/bill")
def serve_bill():
return render_template("bill.html")
@glob.app.route("/regninger")
def serve_regninger():
return render_template("regninger.html")
@glob.app.route("/kvittering")
def serve_kvittering():
return render_template("kvittering.html")

11
templates/bill.html Normal file
View File

@ -0,0 +1,11 @@
{% set title = "bill:)" %}
{% extends "layout/bootstrap.html" %}
{% block content %}
<p>lotsa bills</p>
<p>many bills</p>
<i class="fas fa-user"></i> <!-- uses solid style -->
<i class="far fa-user"></i> <!-- uses regular style -->
<i class="fab fa-github-square"></i> <!-- uses brands style -->
{% endblock %}