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

Commit

Permalink
Restore route
Browse files Browse the repository at this point in the history
  • Loading branch information
kchendv committed Dec 10, 2021
1 parent f4a6d94 commit e90a247
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('/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")

Expand Down

0 comments on commit e90a247

Please sign in to comment.