15 lines
275 B
Python
15 lines
275 B
Python
# -*- coding: utf-8 -*-
|
|
from flask import Flask
|
|
from flask import render_template
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
@app.route('/<name>')
|
|
def hello(name=None):
|
|
return render_template('index.html', name=name)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0')
|