We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cbeadd commit e158aa3Copy full SHA for e158aa3
base/views.py
@@ -25,6 +25,7 @@ def index(request):
25
with open(os.path.join(settings.REACT_APP_DIR, 'build', 'index.html')) as f:
26
template = Template(f.read())
27
context = Context(
28
- {'page_title': page_title},
+ {'page_title': page_title, 'page_description': None,
29
+ 'page_keywords': None, 'site_name': None},
30
)
31
return HttpResponse(template.render(context=context))
0 commit comments