+ route about

main
jgenero 3 years ago
parent 6aba4cb157
commit a1330abfca

@ -16,4 +16,9 @@ from .app import app
@app.route("/")
def home():
"""home route"""
return render_template("home.html")
return render_template("home.html")
@app.route("/about")
def about():
"""home route"""
return render_template("about.html")

Loading…
Cancel
Save