24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
"""
|
|
Blueprint: главная страница (GET /).
|
|
|
|
Отдаёт HTML-интерфейс DrHider.
|
|
"""
|
|
|
|
from flask import Blueprint, render_template, current_app
|
|
|
|
# ═══════════════════════════════════════════════════════════════════════════
|
|
# Blueprint: главная страница
|
|
# ═══════════════════════════════════════════════════════════════════════════
|
|
|
|
main_bp = Blueprint("main", __name__)
|
|
|
|
|
|
@main_bp.route("/")
|
|
def index():
|
|
"""Главная страница — веб-интерфейс DrHider.
|
|
|
|
Передаёт в шаблон текущую версию приложения.
|
|
"""
|
|
version = current_app.config.get("VERSION", "0.0.0")
|
|
return render_template("index.html", version=version)
|