module HtmlTags::BaseModule

Public Class Methods

is_on_roebe?() click to toggle source
#

HtmlTags::BaseModule.is_on_roebe?

#
# File lib/html_tags/base/base_module.rb, line 35
def self.is_on_roebe?
  ENV['IS_ROEBE'].to_s == '1'
end

Public Instance Methods

a( i = '', css_class = '', the_id = '', css_style = '', javascript = '', &block ) click to toggle source
#

a (a tag)

#
# File lib/html_tags/base/base_module.rb, line 176
def a(
    i          = '',
    css_class  = '',
    the_id     = '',
    css_style  = '',
    javascript = '',
    &block
  )
  HtmlTags.a(
    i, css_class, the_id, css_style, javascript, &block
  )
end
br() click to toggle source
#

br

#
# File lib/html_tags/base/base_module.rb, line 207
def br
  HtmlTags.br
end
div( i = '', css_class = '', the_id = '', css_style = '', &block ) click to toggle source
#

div

This method can be used to create the html <div> tag.

#
# File lib/html_tags/base/base_module.rb, line 163
def div(
    i         = '',
    css_class = '',
    the_id    = '',
    css_style = '',
    &block
  )
  HtmlTags.div(i, css_class, the_id, css_style, &block)
end
form( i = '', css_class = '', the_id = '', css_style = '', &block ) click to toggle source
#

form (form tag)

#
# File lib/html_tags/base/base_module.rb, line 192
def form(
    i          = '',
    css_class  = '',
    the_id     = '',
    css_style  = '',
    &block
  )
  HtmlTags.form(
    i, css_class, the_id, css_style, &block
  )
end
h1( i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block ) click to toggle source
#

h1

#
# File lib/html_tags/base/base_module.rb, line 75
def h1(
    i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block
  )
  HtmlTags.h1(
    i, css_class, the_id, css_style, javascript_code, &block
  )
end
h2( i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block ) click to toggle source
#

h2

#
# File lib/html_tags/base/base_module.rb, line 86
def h2(
    i               = '',
    css_class       = '',
    the_id          = '',
    css_style       = '',
    javascript_code = '',
    &block
  )
  HtmlTags.h2(
    i, css_class, the_id, css_style, javascript_code, &block
  )
end
h3( i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block ) click to toggle source
#

h3

#
# File lib/html_tags/base/base_module.rb, line 102
def h3(
    i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block
  )
  HtmlTags.h3(
    i, css_class, the_id, css_style, javascript_code, &block
  )
end
h4( i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block ) click to toggle source
#

h4

#
# File lib/html_tags/base/base_module.rb, line 113
def h4(
    i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block
  )
  HtmlTags.h4(
    i, css_class, the_id, css_style, javascript_code, &block
  )
end
h5( i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block ) click to toggle source
#

h5

#
# File lib/html_tags/base/base_module.rb, line 124
def h5(
    i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block
  )
  HtmlTags.h5(
    i, css_class, the_id, css_style, javascript_code, &block
  )
end
h6( i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block ) click to toggle source
#

h6

#
# File lib/html_tags/base/base_module.rb, line 135
def h6(
    i = '', css_class = '', the_id = '', css_style = '', javascript_code = '', &block
  )
  HtmlTags.h6(
    i, css_class, the_id, css_style, javascript_code, &block
  )
end
html( i = '', css_class = '', the_id = '', css_style = '', &block ) click to toggle source
#

html

#
# File lib/html_tags/base/base_module.rb, line 214
def html(
    i               = '',
    css_class       = '',
    the_id          = '',
    css_style       = '',
    &block
  )
  HtmlTags.html(i, css_class, the_id, css_style, &block)
end
li( i = '', optional_css_class = '', optional_id = '', optional_css_style = '', &block ) click to toggle source
#

li (li tag)

#
# File lib/html_tags/base/base_module.rb, line 53
def li(
    i = '', optional_css_class = '', optional_id = '', optional_css_style = '', &block
  )
  HtmlTags.li(
    i, optional_css_class, optional_id, optional_css_style, &block
  )
end
ol( i = '', optional_css_class = '', optional_id = '', optional_css_style = '', &block ) click to toggle source
#

ol (ol tag)

#
# File lib/html_tags/base/base_module.rb, line 64
def ol(
    i = '', optional_css_class = '', optional_id = '', optional_css_style = '', &block
  )
  HtmlTags.ol(
    i, optional_css_class, optional_id, optional_css_style, &block
  )
end
p( i = '', css_class = '', the_id = '', css_style = '', &block ) click to toggle source
#

p

This method can be used to create the html <p> tag.

#
# File lib/html_tags/base/base_module.rb, line 148
def p(
    i         = '',
    css_class = '',
    the_id    = '',
    css_style = '',
    &block
  )
  HtmlTags.p(i, css_class, the_id, css_style, &block)
end
pre( i = '', css_class = '', the_id = '', css_style = '', &block ) click to toggle source
#

pre

#
# File lib/html_tags/base/base_module.rb, line 42
def pre(
    i = '', css_class = '', the_id = '', css_style = '', &block
  )
  HtmlTags.pre(
    i, css_class, the_id, css_style, &block
  )
end