From 5537235adf6939bd3c498e4428b937254a8fddb2 Mon Sep 17 00:00:00 2001 From: LongHairedHacker Date: Mon, 14 Nov 2016 23:54:39 +0100 Subject: [PATCH] Fixed title for gallery --- modules/gallery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gallery.py b/modules/gallery.py index df1f757..7893cb0 100644 --- a/modules/gallery.py +++ b/modules/gallery.py @@ -75,7 +75,7 @@ class Gallery(MenuItemMixin, NewsItemMixin, TemplateMixin, FileAssetsMixin): def get_context(self): context = super(Gallery,self).get_context() - context['title'] = self.title + context['title'] = self.description['title'] markdown_converter = markdown.Markdown(extensions = self.markdown_extensions)