Initial Commit

This commit is contained in:
2025-11-27 00:00:50 +00:00
commit b7e68a9057
43 changed files with 3445 additions and 0 deletions

10
core/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
# /var/www/bennysboard/core/__init__.py
from flask import Blueprint, render_template
core_bp = Blueprint("core", __name__)
@core_bp.get("/")
def home():
# Renders /var/www/bennysboard/core/templates/core/home.html
return render_template("core/home.html")