Method: Burr::BlockTag#render

Defined in:
lib/burr/liquid_ext/block.rb

#render(context) ⇒ Object



30
31
32
33
34
35
36
# File 'lib/burr/liquid_ext/block.rb', line 30

def render(context)
  context.stack do
    context['block'] = BlockDrop.new(self)

    render_all(@nodelist, context)
  end
end