summaryrefslogtreecommitdiff
path: root/apps/home/views.py
diff options
context:
space:
mode:
authorfschildt <florian.schildt@protonmail.com>2025-10-17 14:00:16 +0200
committerfschildt <florian.schildt@protonmail.com>2025-10-17 14:00:16 +0200
commitd1e59579ca19454369d56a8c7525e109a86841e2 (patch)
tree695f348acca3a32c97512685384da818a3ba5195 /apps/home/views.py
first commit
Diffstat (limited to 'apps/home/views.py')
-rw-r--r--apps/home/views.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/home/views.py b/apps/home/views.py
new file mode 100644
index 0000000..714ba06
--- /dev/null
+++ b/apps/home/views.py
@@ -0,0 +1,7 @@
+from django.shortcuts import render
+
+
+def index(request):
+ context = {}
+ return render(request, 'index.html', context)
+