use overlay
This commit is contained in:
parent
0da6a11606
commit
310cf4659d
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
|||
</div>
|
||||
</header>
|
||||
<div class="about">
|
||||
{{ about.content | safe }}
|
||||
{{ overlay.content | safe }}
|
||||
</div>
|
||||
<div class="user">
|
||||
{% if request.user.is_authenticated %}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue