11 lines
186 B
Python
11 lines
186 B
Python
|
from django.urls import path
|
||
|
from . import views
|
||
|
from django.conf import settings
|
||
|
from django.conf.urls.static import static
|
||
|
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', views.blog, name ='Blog'),
|
||
|
]
|
||
|
|