Sha256: a4683f83938e9f96af229bbd3d0eaef2f7f354c576c90abeead5d8a8cba73471
Contents?: true
Size: 1.52 KB
Versions: 14
Compression:
Stored size: 1.52 KB
Contents
module UiBibz::Ui::Core # Create a jumbotron # # This element is an extend of UiBibz::Ui::Core::Component. # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # * +full_with+ - Boolean to render jumbotron in fullscreen # # ==== Signatures # # UiBibz::Ui::Core::Jumbotron.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Jumbotron.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Jumbotron.new(content, full_width: true).render # # UiBibz::Ui::Core::Jumbotron.new() do # #content # end.render # # ==== Helper # # jumbotron(content, options = {} , html_options = {}) # # jumbotron(options = {}, html_options = {}) do # content # end # class Jumbotron < Component # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super end # Render html tag def render content_tag :div, html_options do if fluid Container.new(content).render else content end end end private def component_html_classes ['jumbotron', fluid] end def fluid "jumbotron-fluid" unless options[:fluid].nil? end end end
Version data entries
14 entries across 14 versions & 1 rubygems