Skip to content

Commit e158aa3

Browse files
committed
Add missing context keys
1 parent 8cbeadd commit e158aa3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

base/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def index(request):
2525
with open(os.path.join(settings.REACT_APP_DIR, 'build', 'index.html')) as f:
2626
template = Template(f.read())
2727
context = Context(
28-
{'page_title': page_title},
28+
{'page_title': page_title, 'page_description': None,
29+
'page_keywords': None, 'site_name': None},
2930
)
3031
return HttpResponse(template.render(context=context))

0 commit comments

Comments
 (0)