from flask import Blueprint, render_template blueprint = Blueprint("view_main", __name__, url_prefix="/") @blueprint.route("/") def main_page(): return render_template("index.html")