mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-27 11:48:06 +00:00
9 lines
216 B
Python
9 lines
216 B
Python
from django.conf.urls import url
|
|
|
|
from spa.blog.views import entry, index
|
|
|
|
urlpatterns = [
|
|
url(r'^blog/(?P<slug>[\w\d_.-]+)/?$', entry, name='blog_entry_slug'),
|
|
url(r'^$', index, name='blog_index')
|
|
]
|