11 lines
243 B
Python
11 lines
243 B
Python
from flask import Flask, render_template, send_from_directory
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
@app.route('/index')
|
|
def index():
|
|
return render_template('index.html', title='Home')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True)
|