Files
lair.moe/blueprints/root/__init__.py
T
Sweetbread bfd9ceb93d
Docker Build and Push / build-and-push (push) Failing after 3m6s
Use Pug template generator
2026-04-08 22:57:55 +03:00

29 lines
521 B
Python

from htmlmin import minify
from flask import Blueprint, render_template, request, jsonify
bp = Blueprint(
"root",
__name__,
template_folder="templates",
static_folder="static"
)
def render_tmpl(filename: str) -> str:
return minify(
render_template(filename),
remove_empty_space=True
)
@bp.route("/")
def index():
return render_tmpl('index.pug')
@bp.route("/host")
def host():
return render_tmpl('host.pug')
@bp.route("/us")
def us():
return render_tmpl('us.pug')