summaryrefslogtreecommitdiff
path: root/config/base_urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'config/base_urls.py')
-rw-r--r--config/base_urls.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index f06651a..496d72b 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -33,9 +33,8 @@ urlpatterns = [
path(r'feed.xml', PostRSSFeedView(),name="feed"),
path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}),
#path(r'newsletter/', include('lttr.urls')),
- path(r'podcast/', include('posts.urls.podcast_urls')),
- re_path(r'^podcast/$', RedirectView.as_view(url='/reviews/')),
- path(r'podcasts/', include('posts.urls.podcast_urls')),
+ path(r'podcasts/', include('podcasts.urls')),
+ path(r"feeds/podcasts/", include("podcasts.urls_feeds")),
path(r'book-notes/', include('books.urls')),
path(r'<slug>.txt', PageDetailTXTView.as_view()),
path(r'<slug>', include('pages.urls', namespace='pages')),