projects
/
styx.blog
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove stupid copyright notice
[styx.blog]
/
core
/
urls.py
1
from django.urls import path
2
3
from . import views
4
5
urlpatterns = [
6
path('', views.PostListView.as_view(), name='post-list'),
7
path('atom', views.AtomFeed(), name='atom'),
8
path('p/<slug:slug>/', views.PostDetailView.as_view(), name='post-detail'),
9
]