yeyicheng

Untitled

May 6th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Blog</title>
  5.         <%= stylesheet_link_tag    "application", :media => "all" %>
  6.         <%= javascript_include_tag "application" %>
  7.         <%= csrf_meta_tags %>
  8.     </head>
  9.     <body>
  10.        
  11.         <% flash.each do |key, value| %>
  12.             <p><%= value %></p>
  13.         <% end %>
  14.  
  15.         <%= yield %>
  16.  
  17.     </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment