mirror of
https://github.com/logos-co/open-law.git
synced 2025-02-10 22:06:46 +00:00
16 lines
224 B
Python
16 lines
224 B
Python
from flask import (
|
|
Blueprint,
|
|
render_template,
|
|
)
|
|
|
|
|
|
bp = Blueprint("home", __name__, url_prefix="/home")
|
|
|
|
|
|
@bp.route("/", methods=["GET"])
|
|
def get_all():
|
|
|
|
return render_template(
|
|
"home/index.html",
|
|
)
|