87
88
89
90
91
92
93
94
95
96
|
# File 'lib/maglove/widgets/container.rb', line 87
def container_widget(options = {}, &block)
widget_block(Widgets::Container.new(options)) do |widget|
haml_tag :section, widget.container_options do
haml_tag :div, widget.image_options do
yield if block
drop_container
end
end
end
end
|