Skip to content

Instantly share code, notes, and snippets.

@taiansu
Created November 12, 2012 17:29
Show Gist options
  • Save taiansu/4060683 to your computer and use it in GitHub Desktop.
Save taiansu/4060683 to your computer and use it in GitHub Desktop.
Bootstrap flash notice
<body>
<div class="container">
<% flash.each do |name, msg| %>
<div class="alert alert-<%= name == :notice ? "success" : "error" %>">
<a class="close" data-dismiss="alert">x</a>
<%= msg %>
</div>
<% end %>
</div>
<!-- Rest of content -->
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment