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
You have to use " around the string, also need to call html_safe method on it.
"
html_safe
<%= link_to "".html_safe, page_path('messages') %>
but a better and cleaner way would be
<%= link_to page_path('messages') do %> <% end %>