Reputation: 7922
I'm trying to get the resume-template jekyll theme working. My github repository is here: https://github.com/earlbellinger/earlbellinger.github.io
I'm running into an issue that the fonts displayed on my local machine when I use bundle exec jekyll serve
are completely different from the ones displayed when github pages render it. How can I fix this? Thanks for any tips.
Upvotes: 3
Views: 637
Reputation: 52789
You're experiencing Mixed content security rules!
In _includes/head.html
, change : http://fonts.googleapis.com
to : https://fonts.googleapis.com
Upvotes: 5