Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
lib/jekyll/rendering.rb (do_layout): [FIX] Pass *intermediate* output…
Browse files Browse the repository at this point in the history
… along.
  • Loading branch information
blackwinter committed Sep 29, 2010
1 parent f78e916 commit 7c27f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/rendering.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def do_layout(payload, layouts)

while layout = layouts[layout.data['layout']]
payload = payload.deep_merge('content' => output, 'page' => layout.data)
self.output = engine.render(payload, content, info, layout.content)
self.output = engine.render(payload, output, info, layout.content)
end
end

Expand Down

0 comments on commit 7c27f65

Please sign in to comment.