Created
November 12, 2012 17:29
-
-
Save taiansu/4060683 to your computer and use it in GitHub Desktop.
Bootstrap flash notice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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