1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

Merge remote-tracking branch 'origin/3.0-stable'

This commit is contained in:
Ben Hollis 2013-02-10 17:05:18 -08:00
commit 978b981e11

View file

@ -259,11 +259,11 @@ module Middleman
end end
# Render using Tilt # Render using Tilt
content = template.render(context, path, locs, &block) content = template.render(context, locs, &block)
# Allow hooks to manipulate the result after render # Allow hooks to manipulate the result after render
self.class.callbacks_for_hook(:after_render).each do |callback| 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 end
return content return content