diff options
| author | hukl <hukl@eight.local> | 2009-01-31 13:04:29 +0100 |
|---|---|---|
| committer | hukl <hukl@eight.local> | 2009-01-31 13:04:29 +0100 |
| commit | 89d3dc4a676ee82cc6bad4d9d00535897318f1c3 (patch) | |
| tree | 193c17723e67a2140323bbc9d68985a7f5545b0f /app/views/layouts | |
| parent | 71f70cca407fa0dad84c3b8babc63e42e40d8ea2 (diff) | |
Added Page model scaffold
Diffstat (limited to 'app/views/layouts')
| -rw-r--r-- | app/views/layouts/pages.html.erb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/views/layouts/pages.html.erb b/app/views/layouts/pages.html.erb new file mode 100644 index 0000000..327e0eb --- /dev/null +++ b/app/views/layouts/pages.html.erb | |||
| @@ -0,0 +1,17 @@ | |||
| 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>Pages: <%= 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> | ||
