Converting to embedded ruby

50 Views Asked by At

How would I go about converting:

<a class="btn btn-block btn-social btn-facebook">
<i class="fa fa-facebook"></i> Sign in with Facebook

to embedded ruby? Right now I have the following working, but I don't know how to add the i class, which is leaving the button looking funky.

 <%= link_to "Sign in with Facebook", user_omniauth_authorize_path(:facebook), class: "btn btn-block btn-social btn-facebook"  %>
1

There are 1 best solutions below

0
On BEST ANSWER

This will do it

<%= link_to user_omniauth_authorize_path(:facebook), class: "btn btn-block btn-social btn-facebook" do %>
  <i class="fa fa-facebook"></i> Sign in with Facebook
<% end %>