Files
grecia/app/views/layouts/_flash.html.erb
2017-01-05 17:12:42 +01:00

13 lines
479 B
Plaintext

<% flash.each do |flash_key, flash_message| %>
<div id="<%= flash_key %>" data-alert class="notice-container callout-slide" data-closable>
<div class="callout notice <%= flash_key %>">
<button class="close-button" aria-label="<%= t("application.close") %>" type="button" data-close>
<span aria-hidden="true">&times;</span>
</button>
<div class="notice-text">
<%= flash_message.try(:html_safe) %>
</div>
</div>
</div>
<% end %>