views.py 192 B

123456789101112
  1. from flask import render_template
  2. from app import app
  3. @app.route('/')
  4. def home():
  5. return 'hello world!!'
  6. @app.route('/template')
  7. def template():
  8. return render_template('home.html')