Add workshops package

This commit is contained in:
Patrick Jentsch
2023-07-25 15:18:57 +02:00
parent ccf7f449dd
commit f80b635ca3
6 changed files with 169 additions and 0 deletions

View File

@ -0,0 +1,5 @@
from flask import Blueprint
bp = Blueprint('workshops', __name__)
from . import routes

10
app/workshops/routes.py Normal file
View File

@ -0,0 +1,10 @@
from flask import render_template
from . import bp
@bp.route('/fgho_sommerschule_2023')
def index():
return render_template(
'workshops/fgho_sommerschule_2023.html.j2',
title='FGHO Sommerschule 2023',
)