You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
305 B

  1. from flask import current_app, Blueprint, render_template
  2. default_views = Blueprint('default_views', __name__, url_prefix='/')
  3. @default_views.route('/')
  4. def index():
  5. return render_template('index.html')
  6. @default_views.route('/handbook')
  7. def handbook():
  8. return render_template('handbook.html')