aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/urls.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/home/urls.py b/home/urls.py
index 077e7287..31e76c9f 100644
--- a/home/urls.py
+++ b/home/urls.py
@@ -1,5 +1,9 @@
from django.contrib import admin
from django.urls import path
+from django.views.generic import TemplateView
-urlpatterns = []
+app_name = 'home'
+urlpatterns = [
+ path('', TemplateView.as_view(template_name='home/index.html'))
+]