Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
route new frontend to /kevin
Browse files Browse the repository at this point in the history
  • Loading branch information
wadefagen committed Dec 10, 2021
1 parent 3639033 commit 751e47c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@


# Route for "/" (frontend):
@app.route('/')
@app.route('/kevin')
def index():
return render_template("index.html")

# Route for old (plain) frontend:
@app.route('/plain')
@app.route('/')
def index_plain():
return render_template("index_plain.html")

Expand Down

0 comments on commit 751e47c

Please sign in to comment.