この画像をprofile_path(thing.user)にリンクする必要があります
<%= image_tag thing.user.photo.url(:small), { :class=>"rounded_square" ,
style: "margin-left:8px; text-align:center; vertical-align:middle;" } %>
この画像をprofile_path(thing.user)にリンクする必要があります
<%= image_tag thing.user.photo.url(:small), { :class=>"rounded_square" ,
style: "margin-left:8px; text-align:center; vertical-align:middle;" } %>
link_to
何も役に立たない場合はブロックを取る必要があります:
<%= link_to profile_path(thing.user) do %>
<%= image_tag thing.user.photo.url(:small), { :class=>"rounded_square" ,
style: "margin-left:8px; text-align:center; vertical-align:middle;" } %>
<% end %>
= link_to somewhere_path(some_object) do
= image_tag some_object.url, class: 'rounded_square'
end
ブロックの戻り値がa
タグのコンテンツになります。
ネストされたerbで試すことができます。
<%= link_to "#{image_tag(yourimagepath)}", "link_path" %>
このように見えるはずです。
<%= link_to "#{image_tag thing.user.photo.url(:small),
{ :class=>'rounded_square' , style: "margin-left:8px; text-align:center; vertical-align:middle;" }}",
"profile_path(thing.user)" %>