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(options={})
   :table, class: 'container' do
     :tr do
       :td, options do
        yield if block_given?
      end
    end
  end
end