Add feather icons and use them in the global nav, add RSS
[styx.blog] / core / urls.py
index 4addd71..d2f031e 100644 (file)
@@ -4,5 +4,6 @@ from . import views
 
 urlpatterns = [
     path('', views.PostListView.as_view(), name='post-list'),
+    path('atom', views.AtomFeed(), name='atom'),
     path('p/<slug:slug>/', views.PostDetailView.as_view(), name='post-detail'),
 ]