Reputation: 2758
Hi :) I'm new to haml and want something like this:
%h1 =link_to "Home" :root
How could I realize this? Hope you can help me with this :)
Upvotes: 3
Views: 2227
Reputation: 1892
Try this:
%h1 = link_to "Home", root_path
Upvotes: 6