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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index 8a9c3ef..f06651a 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -33,6 +33,9 @@ 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'book-notes/', include('books.urls')),
path(r'<slug>.txt', PageDetailTXTView.as_view()),
path(r'<slug>', include('pages.urls', namespace='pages')),