Skip to content

Instantly share code, notes, and snippets.

@kpearson
Last active August 29, 2015 14:23
Show Gist options
  • Save kpearson/5f4d9caa649f09d10f48 to your computer and use it in GitHub Desktop.
Save kpearson/5f4d9caa649f09d10f48 to your computer and use it in GitHub Desktop.

Flash Messages

Resources

View Template

<!-- app/views/layouts/application.html.erb -->

</head>
<body>

  <% flash.each do |name, msg| -%>
    <%= content_tag :div, msg, class: name %>
  <% end -%>

<%= yield %>

</body>
</html>

Messages

Alerts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment