Files
gander/backend/core/blueprints/main.py
Chris-1010 2887409ae6 Major: Restructure of Project
Major: Introduction of Frontend (React)
2025-01-21 17:19:23 +00:00

15 lines
311 B
Python

from flask import render_template, Blueprint
main_bp = Blueprint("app", __name__)
@main_bp.route('/')
def index():
"""
Home page of the platform
Contains a list of some of the streams that are currently live and the most popular categories.
"""
return render_template('index.html')