from flask import render_template, Blueprint import requests home_app = Blueprint('home', __name__) @home_app.route('/backstage/home') def home(): return render_template('home.html')