Files
grecia/app/views/layouts/_flash.html.erb
2016-10-19 10:54:48 +02:00

13 lines
463 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 %>
</div>
</div>
</div>
<% end %>