Sha256: faae24359100c043936fa6239f4836f278464445f2507888b2293609c42e399d

Contents?: true

Size: 1.44 KB

Versions: 4

Compression:

Stored size: 1.44 KB

Contents

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title><%%= h(yield(:title) || "Untitled") %></title>
    <%%= stylesheet_link_tag 'blueprint/screen.css', :media => 'screen, projection' %>
    <%%= stylesheet_link_tag 'blueprint/print.css', :media => 'print' %>
    <!--[if lt IE 8]>
      <%%= stylesheet_link_tag 'blueprint/ie.css', :media => 'screen, projection' %>
    <![endif]-->

    <!-- uncomment for activating blueprint plugins -->
    <!-- <%%= stylesheet_link_tag 'blueprint/plugins/buttons/screen.css', :media => 'screen, projection' %> -->
    <!-- <%%= stylesheet_link_tag 'blueprint/plugins/fancy-type/screen.css', :media => 'screen, projection' %> -->
    <!-- <%%= stylesheet_link_tag 'blueprint/plugins/link-icons/screen.css', :media => 'screen, projection' %> -->
    <!-- <%%= stylesheet_link_tag 'blueprint/plugins/rtl/screen.css', :media => 'screen, projection' %> -->

    <%%= stylesheet_link_tag 'formtastic' %>
    <%%= stylesheet_link_tag 'formtastic_changes' %>

    <%%= stylesheet_link_tag '<%= file_name %>' %>
    <%%= yield(:head) %>
  </head>
  <body>
    <div class="container">
      <%%- flash.each do |name, msg| -%>
        <%%= content_tag :div, msg, :id => "flash_#{name}" %>
      <%%- end -%>
      
      <%%- if show_title? -%>
        <h1><%%=h yield(:title) %></h1>
      <%%- end -%>
      
      <%%= yield %>
    </div>
  </body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
splendeo-generators-0.3.1 rails_generators/splendeo_layout/templates/layout.html.erb
splendeo-generators-0.3.0 rails_generators/splendeo_layout/templates/layout.html.erb
splendeo-generators-0.2.1 rails_generators/splendeo_layout/templates/layout.html.erb
splendeo-generators-0.2.0 rails_generators/splendeo_layout/templates/layout.html.erb