14 lines
202 B
Python
14 lines
202 B
Python
from flask import *
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
@app.route('/static-file')
|
|
def load_staticfile():
|
|
return render_template('hw_t2.html')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(port=80)
|