Sha256: 4c5887c266825dbfe56817ac906734cfdd36e4fd5fef08fba2b2c2cdb3a7909a
Contents?: true
Size: 432 Bytes
Versions: 15
Compression:
Stored size: 432 Bytes
Contents
<%# # Flash Partial This partial renders flash messages on every page. ## Relevant Helpers: - `flash`: Returns a hash, where the keys are the type of flash (alert, error, notice, etc) and the values are the message to be displayed. %> <% if flash.any? %> <div class="flashes"> <% flash.each do |key, value| -%> <div class="flash flash-<%= key %>"><%= value.html_safe %></div> <% end -%> </div> <% end %>
Version data entries
15 entries across 15 versions & 3 rubygems