Explorar el Código

Render locals in layout as well as template

tags/v0.4.0
Adrian Short hace 5 años
padre
commit
c9c314e74b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      lib/petrify.rb

+ 1
- 1
lib/petrify.rb Ver fichero

@@ -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



Cargando…
Cancelar
Guardar