aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/generators/erb/scaffold/templates/layout.html.erb
blob: 3f64be0c45c7670231b3139588ad2c1a89b91479 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

               
      

                                                                             
                                          
                       


       
                                    
                                  
 
             


       
<!DOCTYPE html>
<html>
<head>
  <title><%= controller_class_name %>: <%%= controller.action_name %></title>
  <%%= stylesheet_link_tag 'scaffold' %>
  <%%= javascript_include_tag :defaults %>
  <%%= csrf_meta_tag %>
</head>
<body>

<p class="notice"><%%= notice %></p>
<p class="alert"><%%= alert %></p>

<%%= yield %>

</body>
</html>