如何在Rails中使用haml制作图像链接标记?

时间:2009-07-29 19:55:43

标签: ruby-on-rails haml

我在application.html.haml中有这样的东西:

#header
    = image_tag("header.jpg")

例如,如何建立指向www.google.com的链接?

由于

1 个答案:

答案 0 :(得分:119)

我是这样做的:

= link_to image_tag( 'header.jpg'), 'http://www.google.com'