Create new app for homepage

This commit is contained in:
Juhn-Vitus Saß
2025-02-14 16:27:57 +01:00
parent 01f28c0841
commit 897ee79237
21 changed files with 78 additions and 907 deletions

8
core/homepage/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
app_name = 'homepage' # Verhindert Konflikt mit anderen Apps
urlpatterns = [
path('', views.home, name="home"),
]