Method: Blot::Helpers::Grid#container
- Defined in:
- lib/blot/helpers/grid.rb
#container(options = {}) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/blot/helpers/grid.rb', line 13 def container(={}) content_tag :table, class: 'container' do content_tag :tr do content_tag :td, do yield if block_given? end end end end |