link_to image_tag with inner text or html in rails

后端 未结 9 1572
生来不讨喜
生来不讨喜 2020-12-02 16:59

I want to output the following with Ruby on Rails link_to and image_tag methods:

Lorem Ipsum 

        
9条回答
  •  猫巷女王i
    2020-12-02 17:23

    I prefer this approach in HAML

    = link_to root_path do
      = image_tag "ic_launcher.png", size: "16x16"
      Home
    

提交回复
热议问题