diff --git a/app.py b/app.py index 78be057..7ca049a 100644 --- a/app.py +++ b/app.py @@ -13,12 +13,12 @@ # Route for "/" (frontend): -@app.route('/kevin') +@app.route('/') def index(): return render_template("index.html") # Route for old (plain) frontend: -@app.route('/') +@app.route('/plain') def index_plain(): return render_template("index_plain.html") diff --git a/templates/index.html b/templates/index.html index f3cc1d8..1b780da 100644 --- a/templates/index.html +++ b/templates/index.html @@ -5,9 +5,13 @@ - - - + + + @@ -16,9 +20,8 @@ MIX :: CS 240