Initial Commit
This commit is contained in:
9
core/__init_.py
Normal file
9
core/__init_.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
|
||||
core_bp = Blueprint("core", __name__)
|
||||
|
||||
|
||||
@core_bp.get("/")
|
||||
def home():
|
||||
return render_template("core/home.html")
|
||||
Reference in New Issue
Block a user