~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb

  • Committer: Richard Lee (Canonical)
  • Date: 2010-10-15 15:17:58 UTC
  • mfrom: (190.1.3 use-case-mapper)
  • Revision ID: richard.lee@canonical.com-20101015151758-wcvmfxrexsongf9d
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
 
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
 
 
4
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
 
<head>
6
 
  <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
7
 
  <title><%= controller_class_name %>: <%%= controller.action_name %></title>
8
 
  <%%= stylesheet_link_tag 'scaffold' %>
9
 
</head>
10
 
<body>
11
 
 
12
 
<p style="color: green"><%%= flash[:notice] %></p>
13
 
 
14
 
<%%= yield %>
15
 
 
16
 
</body>
17
 
</html>