main.py 353 B

123456789101112131415161718
  1. from flask import render_template
  2. from app import app
  3. @app.route('/')
  4. @app.route('/index')
  5. def index():
  6. return render_template('index.html', title='Home')
  7. @app.route('/about')
  8. def about():
  9. return render_template('about.html', title='About')
  10. @app.route('/contact')
  11. def contact():
  12. return render_template('contact.html', title='Contact')