- If there is a flash notice > "Flash notice"
- If there isn't a flash notice and you're on the homepage > "Welcome"
Code:
<% if flash %>
  <% flash.each do |name, msg| %>
    <%= content_tag :span, msg, id: "flash_#{name}" %>
  <% end %>
<% elsif current_page('/') %>
  <% print 'Hi' %>
<% end %>
It prints the flashes correctly but not the welcome on the home page. Doesn't seem to matter if I try current_page or root_url or print 'Welcome' or just plain "Welcome" with no code wrapper. Why?
