Create a general base layout for public pages

Make a separate template for login route
This commit is contained in:
Andrew Croce
2018-09-24 16:10:08 -04:00
parent 5868630e1f
commit 55b35f56b8
3 changed files with 76 additions and 27 deletions

View File

@@ -12,7 +12,9 @@ bp = Blueprint("atst", __name__)
@bp.route("/")
def root():
return render_template("root.html")
return render_template("login.html")
@bp.route("/help")
def helpdocs():
return render_template("help/index.html")