Skip to content

Instantly share code, notes, and snippets.

@aishek
Last active August 29, 2015 14:05
Show Gist options
  • Save aishek/4425ec317d12780c78ce to your computer and use it in GitHub Desktop.
Save aishek/4425ec317d12780c78ce to your computer and use it in GitHub Desktop.
<% # app/views/shared/_flashes.html.erb %>
<% flash.each do |key, message| %>
<p class="<%= key %>"><%= message %></p>
<% end %>
<% # app/views/layout/application.html.erb %>
<!DOCTYPE>
<html>
<head>
<title>Hello!</title>
</head>
<body>
<%= render 'shared/flashes' %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment