1
Fork 0

Fix tests

This commit is contained in:
Jake Howard 2016-04-08 23:15:15 +01:00
parent 93c3805ba6
commit d32e19c4ac

View file

@ -11,7 +11,8 @@ class BlogView(TemplateView):
context['blog'] = self.blog_data
context['blog']['date'] = reformat_date(self.blog_data['date'])
context['html_title'] = self.blog_data['title']
context['header_image'] = self.blog_data['featured_image']
if 'featured_image' in self.blog_data:
context['header_image'] = self.blog_data['featured_image']
return context
def dispatch(self, request, *args, **kwargs):