Skip to content

Instantly share code, notes, and snippets.

@andrewhl
Created November 6, 2011 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewhl/1343360 to your computer and use it in GitHub Desktop.
Save andrewhl/1343360 to your computer and use it in GitHub Desktop.
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<%= stylesheet_link_tag 'blueprint/screen', :media => 'screen' %>
<%= stylesheet_link_tag 'blueprint/print', :media => 'print' %>
<!--[if lt IE 8]><%= stylesheet_link_tag 'blueprint/ie' %><![endif]-->
<%= stylesheet_link_tag 'custom', :media => 'screen' %>
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<%= render 'layouts/stylesheets' %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tag %>
</head>
<body>
<div class="container">
<%= render 'layouts/header' %>
<section class="round">
<% flash.each do |key, value| %>
<%= content_tag(:div, value, :class => "flash #{key}") %>
<% end %>
<%= yield %>
</section>
<%= render 'layouts/footer' %>
<%= debug(params) if Rails.env.development? %>
</div>
</body>
</html>
2011-11-06T19:47:17+00:00 app[web.1]: Processing by PagesController#home as HTML
2011-11-06T19:47:18+00:00 app[web.1]: Rendered shared/_not_signed_in_home.html.erb (1.9ms)
2011-11-06T19:47:18+00:00 app[web.1]: Rendered pages/home.html.erb within layouts/application (55.6ms)
2011-11-06T19:47:18+00:00 app[web.1]: Rendered layouts/_stylesheets.html.erb (34.8ms)
2011-11-06T19:47:18+00:00 app[web.1]: Completed 500 Internal Server Error in 189ms
2011-11-06T19:47:18+00:00 heroku[router]: GET fierce-leaf-9771.heroku.com/ dyno=web.1 queue=0 wait=0ms service=302ms status=500 bytes=728
2011-11-06T19:47:18+00:00 app[web.1]: 7: <%= stylesheet_link_tag 'custom', :media => 'screen' %>
2011-11-06T19:47:18+00:00 app[web.1]: app/views/layouts/_stylesheets.html.erb:4:in `_app_views_layouts__stylesheets_html_erb__3437005457504265319_29340920'
2011-11-06T19:47:18+00:00 app[web.1]: app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__424160792689602891_30840440'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment