Skip to content

Instantly share code, notes, and snippets.

@beaugaines
Created July 27, 2016 18:40
Show Gist options
  • Save beaugaines/3ecde8d1e4a2569ffdd4bb18434849ed to your computer and use it in GitHub Desktop.
Save beaugaines/3ecde8d1e4a2569ffdd4bb18434849ed to your computer and use it in GitHub Desktop.
bootstrap flash
<% 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