trying to add gitea

This commit is contained in:
2026-02-22 03:08:09 +01:00
parent 7564da1148
commit a033efad5b
6 changed files with 111 additions and 1 deletions

View File

@@ -46,10 +46,12 @@ def create_app(config_class=Config):
from .routes import main
from .blueprints.slides import slides_bp
from .blueprints.admin import admin_bp
from .blueprints.internal import internal_bp
app.register_blueprint(main)
app.register_blueprint(slides_bp)
app.register_blueprint(admin_bp)
app.register_blueprint(internal_bp)
@app.template_filter('md')
def render_markdown(text):