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

Hi :)
I am new to haml and want something like this:

%h1
  =link_to "Home" :root

How could I understand that? Hope you can help me :)

+3
source share
1 answer

Try the following:

%h1
  = link_to "Home", root_path
+6
source

All Articles