module Blot::Helpers::Components

Public Instance Methods

panel_section() { || ... } click to toggle source
# File lib/blot/helpers/components.rb, line 10
def panel_section
  section do
    columns(:twelve, class: 'panel center') { yield if block_given? }
  end
end
section() { || ... } click to toggle source
# File lib/blot/helpers/components.rb, line 4
def section
  row do
    wrapper(class: 'last') { yield if block_given? }
  end
end