from flask import Blueprint, render_template bp = Blueprint('views', __name__) @bp.route('/') def home(): return 'hello world!!' @bp.route('/template') def template(): return render_template('home.html')