Rails link_to tag tag with styled glyphicon

后端 未结 2 725
长发绾君心
长发绾君心 2020-12-10 18:47

I am trying to use glyph icons that I have styled in my rails app.

I want to make the icon a link to another page, but can\'t use the standard bootstrap styling beca

2条回答
  •  无人及你
    2020-12-10 19:14

    You have to use " around the string, also need to call html_safe method on it.

    <%= link_to "".html_safe, page_path('messages') %>
    

    but a better and cleaner way would be

    <%= link_to page_path('messages') do %>
      
    <% end %>
    

提交回复
热议问题