Skip to content

Instantly share code, notes, and snippets.

@songjiz
Last active December 30, 2020 18:26
Show Gist options
  • Save songjiz/84c0952904e13f68ed4d80160af48195 to your computer and use it in GitHub Desktop.
Save songjiz/84c0952904e13f68ed4d80160af48195 to your computer and use it in GitHub Desktop.
<% heading ||= '' %>
<% dismissible ||= false %>
<% flash.each do |type, msg| %>
<div class="alert alert-<%= type %> alert-dismissible" role="alert">
<% if heading.present? %>
<h4 class="alert-heading"><%= heading %></h4>
<% end %>
<div><%= msg %></div>
<% if dismissible %>
<button class="close" type="button" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<% end %>
</div>
<% end %>
<% flash.each do |type, msg| %>
<div class="<%= class_names(['notification', { 'is-info' => (type == 'notice'), 'is-warning' => (type == 'warning'), 'is-danger' => (type == 'alert') }])%>">
<button type="button" class="delete"></button>
<%= msg %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment