NEW About page

This commit is contained in:
Jeremy Zhang
2017-05-11 02:12:26 +00:00
parent 98fc4140f4
commit fb6d9c3b31
5 changed files with 127 additions and 2 deletions

View File

@ -30,6 +30,10 @@ app.register_blueprint(blueprints.embed.embed, url_prefix="/embed", template_fol
def index():
return render_template("index.html.j2")
@app.route("/about")
def about():
return render_template("about.html.j2")
@app.before_request
def before_request():
db.create_all()