Skip to content

Instantly share code, notes, and snippets.

@Senhordim
Created December 30, 2013 13:42
Show Gist options
  • Save Senhordim/8182225 to your computer and use it in GitHub Desktop.
Save Senhordim/8182225 to your computer and use it in GitHub Desktop.
Simples alert bootstrap
<% if flash[:notice].present? %>
<div class="alert alert-success" role="alert">
<a class="close" data-dismiss="alert">×</a>
<%= flash[:notice] %>
</div>
<% end %>
<% if flash[:alert].present? %>
<div class="alert alert-error" role="alert">
<a class="close" data-dismiss="alert">×</a>
<%= flash[:alert] %>
</div>
<% end %>
<% if flash[:info].present? %>
<div class="alert alert-info" role="alert">
<a class="close" data-dismiss="alert">×</a>
<%= flash[:info] %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment