im a donkey
This commit is contained in:
commit
bfb9ce1b84
13
routes.py
13
routes.py
|
@ -9,3 +9,16 @@ def home():
|
|||
@glob.app.route("/testing")
|
||||
def we_are_testing():
|
||||
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
11
templates/bill.html
Normal 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 %}
|
Loading…
Reference in New Issue
Block a user