mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
9 lines
238 B
Text
9 lines
238 B
Text
<% [:notice, :success, :error, :warning, :alert].each do |type| %>
|
|
<% if flash.key?(type) %>
|
|
<div id="notification">
|
|
<div class="message <%= type %>">
|
|
<%= flash[type] %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|