Installation template wrapbootstrap

2

I bought the Genius Bootstrap template and had a problem using it along with Rails.

I performed the following steps: I created a new app (rails new experiment) [Rails 3.2.13] I moved the contents of the assets folder from the template to vendor / assets I changed the references in the images, both in index.html.erb and in style.css

I added the fonts folder in vendor / assets / I added the line: config.assets.paths

asked by anonymous 17.02.2014 / 20:11

1 answer

1

Talles, it would be interesting to see if in the compiled css the path to the fonts is working correctly.

I implemented a wrapbootstrap theme these days and used the following snippet to get the URL of the fonts correctly:

<%= font_path('fontawesome-webfont.eot')%>
    
18.02.2014 / 19:04