revert: app/ → site/ (drhider proves site/ works fine)

This commit is contained in:
2026-07-14 22:56:19 +04:00
parent 38547404f5
commit 96718fc065
42 changed files with 52 additions and 52 deletions
+14
View File
@@ -0,0 +1,14 @@
"""HTML-страницы."""
from flask import Blueprint, render_template
pages_bp = Blueprint("pages", __name__)
@pages_bp.route("/")
def index():
return render_template("index.html")
@pages_bp.route("/architect")
def architect():
return render_template("architect.html")