Hi, I have issues when installing local fonts. So far, they don’t render. I would like to know what are the standards for doing it with Jekyll. So far my steps have been:
- I have a
fonts
folder (withinassets
) and putting there each set of fonts files I’ve previously selected; - Within my
_sass
folder I have_fonts.scss
. Here I am not sure what’s the best way for Jekyll to handle it. I’ve read that asset_url is the best one, but I’d like to double check if the url path needs to have only the font folder name and the font file name, or I need to include all path till assets folder; -
main.scss
is importing thefonts.scss
and I can see that within_site
,main.scss
includes in its css the new local fonts; - The html page I want with these new fonts, has a
layout: default
in its front-matter;
Besides of that, no errors shown in console, and I am not sure if I should add a specific plugin, or that there is a specific configuration for the _config.yml
, or the Gemfile
I am missing.
Thanks!