diff options
Diffstat (limited to 'config/base_urls.py')
-rw-r--r-- | config/base_urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 34141ca..e1ec3d4 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -38,7 +38,6 @@ urlpatterns = [ path(r'feed.xml', PostRSSFeedView(),name="feed"), path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}), path(r'links/', include('links.urls')), - path(r'newsletter/', include('lttr.urls')), path(r'jrnl/', include('posts.urls.jrnl_urls', namespace='jrnl')), #path(r'projects/', include('projects.urls')), path(r'walk/', include('locations.walk_urls')), @@ -66,6 +65,7 @@ urlpatterns = [ path(r'map/', include('locations.urls', namespace='map')), path(r'', HomePageList.as_view(), {'pk':1,}, name="homepage"), path(r'comments/', include('django_comments.urls')), + path(r'<slug>/', include('lttr.urls')), path(r'<slug>.txt', PageDetailTXTView.as_view()), path(r'<slug>', include('pages.urls', namespace='pages')), path(r'<path>/<slug>/', PageDetailView.as_view()), |