Skip to content

Instantly share code, notes, and snippets.

@rbarazi
Created May 3, 2010 18:53
Show Gist options
  • Save rbarazi/388446 to your computer and use it in GitHub Desktop.
Save rbarazi/388446 to your computer and use it in GitHub Desktop.
[Beginning Rails 3] Listing 7-10. Updated Application Layout Template in app/views/layouts/application.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Blog</title>
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<%= content_tag :p, notice, :class => 'notice' if notice.present? %>
<%= content_tag :p, alert, :class => 'alert' if alert.present? %>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment