Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plugins/blog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -84,4 +85,4 @@ def preBuildPage(site, page, context, data):
if post['path'] == page.path:
context.update(post)

return context, data
return context, data