Search code examples
ruby-on-railspathlink-to

Rails 4 - Font Awesome Icons in Links


Im trying to figure out how to make a link in my show page.

I want a link to

<%= @project.external_link %>.  

I want to display it as:

<%= link_to '<i class="fa fa-link"></i>' %>

I've tried at least 20 variations on combining these two and I can't find a way that works.

Does anyone know how to display a font awesome icon, with a link to a dynamic field?


Solution

  • Try this:

    <%= link_to @project.external_link do %>
      <i class="fa fa-link"></i>
    <% end %>