Initial commit

This commit is contained in:
Claude Paroz 2025-07-08 20:37:02 +02:00
commit a961619d08
21 changed files with 413 additions and 0 deletions

10
common/urls.py Normal file
View file

@ -0,0 +1,10 @@
from django.contrib import admin
from django.urls import path
from django.views.generic import TemplateView
urlpatterns = [
path("admin/", admin.site.urls),
path("", TemplateView.as_view(template_name="index.html"), name="home"),
path("presentation/", TemplateView.as_view(template_name="presentation.html"), name="presentation"),
path("contact/", TemplateView.as_view(template_name="contact.html"), name="contact"),
]