A plugin to add the FontAwesome::Sass framework to your Jekyll site.
Add the following to your site's Gemfile
:
gem 'jekyll-font-awesome-sass'
And add the following to your site's _config.yml
file:
gems:
- jekyll-font-awesome-sass
Create a .scss
file (e.g., assets/style.scss
), with the following:
---
---
$fa-font-path: "fonts/font-awesome/";
@import 'font-awesome';
// (Your custom CSS Here)
When your site is built, Jekyll will automatically add the Font Awesome framework before it renders your site's css. In the above example, the resulting file would be assets/style.css
with Font Awesome's CSS followed by your own.
By default, Jekyll Font Awesome SaSS will simply make the @import 'font-awesome';
directive available to your custom stylesheets so that you can more easily include Font Awesome's CSS.
If you would like to use Font Awesome's static assets (e.g., fonts, javascripts), you'll need to add the following to your site's _config.yml
:
font-awesome:
assets: true
This will create /assets/fonts/font-awesome
and assets/javascripts/font-awesome
folders in the generated site, which you can include in your site's header as you would any other javascript file or font.
jekyll-font-awesome-sass
relies on official font-awesome-sass
Ruby gem. To specify the version of Font Awesome used, simply specify the font-awesome-sass
gem version in your Gemfile.
Just about everything in this gem is this is blatantly ripped off from jekyll-bootstrap-sass. It saved me a bunch of time getting this going.