Skip to content

Instantly share code, notes, and snippets.

@askehansen
Created November 29, 2013 14:05
Show Gist options
  • Save askehansen/7706165 to your computer and use it in GitHub Desktop.
Save askehansen/7706165 to your computer and use it in GitHub Desktop.
Rails flash for twitter bootstrap 3.x
<% unless flash.empty? %>
<div class="row">
<div class="col-xs-12">
<% flash.each do |f| %>
<div class="alert alert-<%= f[0] %>">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<strong><%= f[0].capitalize %></strong>! <%= f[1] %>
</div>
<% end %>
</div>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment