first pass at a token navbar experience

This commit is contained in:
2020-11-13 17:55:48 +11:00
parent 77fd5619f6
commit 5fd4479555
3 changed files with 17 additions and 10 deletions

View File

@@ -182,6 +182,9 @@ def author(id):
message=""
return render_template("author.html", author=author, message=message, author_form=author_form)
@app.route("/", methods=["GET"])
def main_page():
return render_template("main.html")
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)