Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created August 17, 2015 21:42
Show Gist options
  • Save jordanhudgens/f63c125e88089ddac0e6 to your computer and use it in GitHub Desktop.
Save jordanhudgens/f63c125e88089ddac0e6 to your computer and use it in GitHub Desktop.
<% if flash[:notice] %>
<div class = "alert alert-success">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<%= flash[:notice] %>
</div>
<% elsif flash[:error] %>
<div class = "alert alert-danger">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<%= flash[:error] %>
</div>
<% elsif flash[:alert] %>
<div class = "alert alert-danger">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<%= flash[:alert] %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment