diff options
author | lxf <sng@luxagraf.net> | 2022-05-15 09:28:50 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2022-05-15 09:28:50 -0400 |
commit | cb48e76ce2e1b78e8983a92cf5c85b5c4a953c7e (patch) | |
tree | 462fc664270fd9ff6a69b471809ae5d71b48a9f4 /config/base_urls.py | |
parent | 7dfa81c42a219ea60e03539471272af65d5574bc (diff) |
page: change homepage to be static and rely on template
Diffstat (limited to 'config/base_urls.py')
-rw-r--r-- | config/base_urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 7bc3431..d306d44 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -5,7 +5,7 @@ from django.contrib import admin from django.contrib.sitemaps.views import sitemap from django.views.generic.base import RedirectView -from pages.views import PageDetailView, PageDetailTXTView, HomePageList +from pages.views import PageDetailView, PageDetailTXTView, HomePageView from posts.models import PostSitemap from pages.models import PageSitemap import builder.views @@ -35,7 +35,7 @@ urlpatterns = [ path(r'<slug>.txt', PageDetailTXTView.as_view()), path(r'<slug>', include('pages.urls', namespace='pages')), path(r'<path>/<slug>/', PageDetailView.as_view()), - path(r'', HomePageList.as_view(), {'pk':1,}, name="homepage"), + path(r'', HomePageView.as_view(), {'pk':1,}, name="homepage"), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) |