add about page

This commit is contained in:
Tobias Brunner 2025-03-07 10:53:07 +01:00
parent eb5e4b0534
commit 3c08d4c293
No known key found for this signature in database
8 changed files with 223 additions and 2 deletions

View file

@ -22,4 +22,8 @@ def homepage(request):
"websitefaqs": websitefaqs,
}
return render(request, "services/homepage.html", context)
return render(request, "pages/homepage.html", context)
def about(request):
return render(request, "pages/about.html")