document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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>
');