Add main homepage

This commit is contained in:
Nyymix 2025-04-25 20:49:41 +03:00
parent 59a4ffc4ff
commit 4436042738
3 changed files with 95 additions and 3 deletions

View file

@ -5,7 +5,7 @@ from . import converters, views
app_name = 'gallery'
urlpatterns = [
path('', views.AlbumsList.as_view(), name='main_url'),
path('', views.Main.as_view(), name='main_url'),
path('about/', views.About.as_view(), name='about_url'),
path('search/', views.Search.as_view(), name='search_url'),
path('photostream/', views.PhotosList.as_view(), name='photos_url'),