Skip to content
Snippets Groups Projects
Commit 9e87c7dd authored by HouTeng Chan's avatar HouTeng Chan
Browse files

Update file app.py

parent 730d075d
No related branches found
No related tags found
No related merge requests found
Pipeline #517495 failed
......@@ -24,7 +24,11 @@ def serve():
@app.route('/')
def home():
return render_template('pages/home.html')
return render_template('/pages/home.html')
@app.route('/home')
def h():
return render_template('/pages/home.html')
@app.route('/<page>')
def pages(page):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment