from flask import Blueprint from flask.helpers import flash from flask.templating import render_template bp = Blueprint("meta", __name__) @bp.route("/") def home(): return render_template("index.html")