added basic site template

This commit is contained in:
CDaut 2022-05-31 18:33:51 +02:00 committed by CDaut
parent b3dec93039
commit 6ef58d975d
16 changed files with 68 additions and 50 deletions

View file

@ -7,4 +7,5 @@ def viewblog(request):
def addpost(request):
return render(request, 'blog/addpost.html')
context = {'title': 'Neuen Post erstellen'}
return render(request, 'blog/addpost.html', context)