Browse Source

Render locals in layout as well as template

tags/v0.4.0
Adrian Short 5 years ago
parent
commit
c9c314e74b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/petrify.rb

+ 1
- 1
lib/petrify.rb View File

@@ -18,7 +18,7 @@ module Petrify
fn = File.join(dir, 'index.html')
# https://stackoverflow.com/questions/6125265/using-layouts-in-haml-files-independently-of-rails
html = Haml::Engine.new(File.read(@@layout_fn)).render do
html = Haml::Engine.new(File.read(@@layout_fn)).render(Object.new, locals) do
Haml::Engine.new(File.read(File.join(@@views_dir, "#{template}.haml"))).render(Object.new, locals)
end



Loading…
Cancel
Save