Created
July 27, 2016 18:40
-
-
Save beaugaines/3ecde8d1e4a2569ffdd4bb18434849ed to your computer and use it in GitHub Desktop.
bootstrap flash
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
<% flash.each do |k,v| %> | |
<div class="alert alert-<%= k == 'notice' ? 'info' : 'danger' %> fade in"> | |
<button class="close" data-dismiss="alert"> | |
<i class="fa fa-fw fa-info"></i> | |
<strong><Info><%= k %>!</strong> <%= raw(v) %> | |
</button> | |
</div> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment