Skip to content

Instantly share code, notes, and snippets.

@kawahiro311
kawahiro311 / _flashes.html.erb
Last active August 29, 2015 14:05 — forked from roberto/_flash_messages.html.erb
RailsでTwitterBootstrapを使ったflashメッセージ
<% flash.each do |type, message| %>
<div class="alert <%= flash_class_for(type) %>" role="alert">
<button class="close" data-dismiss="alert">×</button>
<%= message %>
</div>
<% end %>