Skip to content

Commit

Permalink
fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Apr 22, 2013
1 parent ec0b72f commit f352c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ exports.reader = function(post) {
if (filename === 'history.md') {
post.template = post.meta.template = 'history';
} else {
post.template = post.meta.template = 'post';
post.template = post.meta.template = (post.meta.template || 'post');
}
if (filename === 'readme.md') {
post.filename = post.meta.filename = 'index';
Expand Down

0 comments on commit f352c6c

Please sign in to comment.