summaryrefslogtreecommitdiff
path: root/config/base_urls.py
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2021-10-30 17:18:57 -0400
committerlxf <sng@luxagraf.net>2021-10-30 17:18:57 -0400
commit7b628e9cde7fe2babe16523b7d1d44df0c468203 (patch)
treed2303d4b6fb316ff32bf58c2afebc6fcd7f30a1e /config/base_urls.py
parent940da61accfd124a2dfc90fb585434203f39685b (diff)
posts: made podcast posttype and templates
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')),