I started make a website for my school project, i use Django Frameworks i want to make my homepage website, i already have html file, then what should i do to make Django read my homepage enter image description here this is my urls.py on main folder
urlpatterns = [
path('admin/', admin.site.urls),
path('katalog/', include('katalog.urls')),
path('', ) #what should i write here?
]
path('some-path/', views.path_function)