Skip to content

routes

index()

Render the home page.

Source code in src\downtime_panda\blueprints\home\routes.py
6
7
8
9
@home_blueprint.route("/")
def index() -> str:
    """Render the home page."""
    return render_template("blueprints/index.html.jinja")