add homepage app

This commit is contained in:
2024-11-24 16:54:08 +00:00
parent f44957b621
commit 4c4093b09d
10 changed files with 62 additions and 0 deletions

5
app/homepage/views.py Normal file
View File

@@ -0,0 +1,5 @@
from django.shortcuts import render
# Create your views here.
def index(request):
return render(request, "homepage.html")