use overlay

This commit is contained in:
j 2023-07-27 09:20:30 +02:00
commit 310cf4659d
2 changed files with 2 additions and 2 deletions

View file

@ -6,5 +6,5 @@ from .page.models import Page
def default_context(request):
context = {}
context['settings'] = settings
context['about'] = Page.objects.filter(slug="about").first()
context['overlay'] = Page.objects.filter(slug="overlay").first()
return context