diff --git a/middleman-core/lib/middleman-core/core_extensions/rendering.rb b/middleman-core/lib/middleman-core/core_extensions/rendering.rb index f61079ef..51d29e34 100644 --- a/middleman-core/lib/middleman-core/core_extensions/rendering.rb +++ b/middleman-core/lib/middleman-core/core_extensions/rendering.rb @@ -259,11 +259,11 @@ module Middleman end # Render using Tilt - content = template.render(context, path, locs, &block) + content = template.render(context, locs, &block) # Allow hooks to manipulate the result after render self.class.callbacks_for_hook(:after_render).each do |callback| - content = callback.call(content, locs, template_class) + content = callback.call(content, path, locs, template_class) end return content