diff --git a/plugins/blog.py b/plugins/blog.py index 7dc01d2..7e388da 100644 --- a/plugins/blog.py +++ b/plugins/blog.py @@ -48,6 +48,7 @@ def find(name): # Build a context for each post postContext = {} postContext['title'] = find('title') + postContext['subtitle'] = find('subtitle') postContext['author'] = find('author') postContext['date'] = find('date') postContext['path'] = page.path @@ -84,4 +85,4 @@ def preBuildPage(site, page, context, data): if post['path'] == page.path: context.update(post) - return context, data \ No newline at end of file + return context, data