Blob of app/views/layouts/standard.html.erb (raw blob data)

1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>Rails Undo Redo Demo App</title>
5 <meta http-equiv="Content-Language" content="English" />
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7 <%= stylesheet_link_tag "style" %>
8 </head>
9 <body>
10 <div id="wrap">
11 <div id="header">
12 <h1>Rails Undo Redo Demo App</h1>
13 <h2>Showing off RUR (<a href="http://blog.nanorails.com/rails-undo-redo">Rails Undo Redo</a>)</h2>
14 </div>
15
16 <% if flash[:notice] %>
17 <p class="message undo"><%= flash[:notice] %></p>
18 <% end %>
19
20 <%= @content_for_layout %>
21
22 <div id="clear"></div>
23
24 </div>
25
26 <% if undo_redo_links != "" %>
27 <p class="message"><%= undo_redo_links %></p>
28 <% end %>
29
30 <div id="footer">
31 Copyright 2008 <a href="http://blog.nanorails.com">nano RAILS</a> | Design by <a href="http://www.minimalistic-design.net">Minimalistic Design</a>
32 </div>
33 <!-- Start of StatCounter Code -->
34 <script type="text/javascript">
35 var sc_project=3439485;
36 var sc_invisible=1;
37 var sc_partition=38;
38 var sc_security="bab9070d";
39 </script>
40
41 <script type="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script><noscript><div class="statcounter"><a class="statcounter" href="http://www.statcounter.com/free_hit_counter.html"><img class="statcounter" src="http://c39.statcounter.com/3439485/0/bab9070d/1/" alt="counter" /></a></div></noscript>
42 <!-- End of StatCounter Code -->
43 </body>
44 </html>