chore(release): 0.2.0 #8

Merged
pufereq merged 47 commits from release/0.2.0 into main 2025-08-26 17:58:45 +00:00
7 changed files with 159 additions and 55 deletions
Showing only changes of commit 50be48dba4 - Show all commits

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
from typing import TYPE_CHECKING
import flask
import flask_login
if TYPE_CHECKING:
from werkzeug.wrappers import Response
index_bp: flask.Blueprint = flask.Blueprint("index", __name__)
@index_bp.route("/")
def index() -> Response | str:
"""Renders the index page."""
return flask.render_template(
"index.html", logged=flask_login.current_user.is_authenticated
)