Skip to content

Instantly share code, notes, and snippets.

@Aravin
Aravin / _flash_messages.html.erb
Created December 10, 2017 17:51 — forked from roberto/_flash_messages.html.erb
Rails flash messages using Twitter Bootstrap
<% flash.each do |type, message| %>
<div class="alert <%= bootstrap_class_for(type) %> fade in">
<button class="close" data-dismiss="alert">×</button>
<%= message %>
</div>
<% end %>