optikfluffel
optikfluffel

Reputation: 2758

How to put a link into an h1 with haml in rails?

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

Answers (1)

D. Simpson
D. Simpson

Reputation: 1892

Try this:

%h1
  = link_to "Home", root_path

Upvotes: 6

Related Questions