main.py 157 B

1234567
  1. from flask import Blueprint, render_template
  2. main = Blueprint('main', __name__)
  3. @main.route('/')
  4. def index():
  5. return render_template('main/index.html')