I would like to change where the logo in my app links to based on the users status (logged in or not).
If the user is logged in I would like it to link to their profile page (users/show). If not logged in then to root_path.
I have this setup using a helper:
View:
<%= link_to logo, root_path %>
Helper:
def logo
logo = image_tag("rlogo.png", alt: "Sample App")
end
Thanks
logovariable. You can just doimage_tag("rlogo.png", alt: "Sample App")– Emily Jul 6 '12 at 18:52