class Rapper::HtmlTags::CssTag

CSS tag.

Public Class Methods

templates() click to toggle source
# File lib/rapper/html_tags.rb, line 148
def templates
  {
    :html => '<link type="text/css" rel="stylesheet" href="<%= path %>">',
    :html5 => "<link rel=\"stylesheet\" href=\"<%= path %>\">",
    :xhtml => '<link type="text/css" rel="stylesheet" href="<%= path %>" />'
  }
end