Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ app = Flask(__name__, static_url_path='/static')
|
|
| 4 |
|
| 5 |
@app.route('/')
|
| 6 |
def home():
|
| 7 |
-
return render_template('index.html')
|
| 8 |
|
| 9 |
if __name__ == '__main__':
|
| 10 |
app.run(debug=True)
|
|
|
|
| 4 |
|
| 5 |
@app.route('/')
|
| 6 |
def home():
|
| 7 |
+
return render_template('/templates/index.html')
|
| 8 |
|
| 9 |
if __name__ == '__main__':
|
| 10 |
app.run(debug=True)
|