Added bill.html and changes to routes.py
This commit is contained in:
parent
59c9fbc106
commit
6f0d860439
|
@ -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("/bill")
|
||||||
|
def serve_bill():
|
||||||
|
return render_template("bill.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