initial version

This commit is contained in:
2026-06-28 14:24:41 +01:00
commit a5fa596244
388 changed files with 71390 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
from django.urls import path
from . import views
app_name = 'blog'
urlpatterns = [
path('articles/', views.articles, name='articles'),
]