diff options
Diffstat (limited to 'lib/templating')
-rw-r--r-- | lib/templating/postRender.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/templating/postRender.js b/lib/templating/postRender.js index 2662814..ec67696 100644 --- a/lib/templating/postRender.js +++ b/lib/templating/postRender.js @@ -36,7 +36,7 @@ function postRender(engine, output) { var content = output.getContent(); var blocks = output.getBlocks(); - var result = replaceBlocks(content); + var result = replaceBlocks(content, blocks); return Promise.forEach(blocks, function(block) { var post = block.get('post'); |