You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('', views.index, name='index'),
|
|
|
|
path('subscribe/thank-you/', views.subscribe_post, name='subscribe_post'),
|
|
|
|
path('p/<slug:slug>/', views.content_page, name='page'),
|
|
|
|
path('blog/', views.blog_index, name='blog_index'),
|
|
|
|
path('blog/page/<int:page_num>/', views.blog_index, name='blog_index_page'),
|
|
|
|
path('blog/<slug:slug>/', views.blog_post, name='blog_post'),
|
|
|
|
path('showcase/', views.showcase_index, name='showcase_index'),
|
|
|
|
path('contribute/', views.contribute_index, name='contribute_index'),
|
|
|
|
]
|