This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
webdev/website/blog/urls.py

7 lines
158 B
Python
Raw Normal View History

2021-12-25 02:18:03 +01:00
from django.urls import path, include
2021-12-24 23:33:45 +01:00
from . import views
urlpatterns = [
2021-12-25 02:18:03 +01:00
path('blogs/', include('blog.urls')),
2021-12-24 23:33:45 +01:00
path('', views.index, name='index')
]