Jake Howard
e5ae66567a
One per section is a little much. Just use a single feed and be done with. Might help discoverability a little.
13 lines
362 B
Python
13 lines
362 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "legacy"
|
|
|
|
urlpatterns = [
|
|
path("posts/index.xml", views.AllPagesFeedView.as_view()),
|
|
path("index.xml", views.AllPagesFeedView.as_view()),
|
|
path("tags/<slug:slug>/", views.TagView.as_view()),
|
|
path("tags/", views.TagsView.as_view()),
|
|
path("categories/", views.TagsView.as_view()),
|
|
]
|