read
After updating the GitHub pages Jekyll resources useing bundle update, there are quite a few problems. Based on internet resolutions. Below are some tricks should be considered.
- Download and install
Python 2.7from here, not the latest version but only version 2.7 -
Recall
minimagem. You have to first locate your minima gem:bundle show minimaWill give you something like
/very/long/path/to/2.2.0/gems/minima-1.0.1. You can then copy/paste_includes,_layoutsand_sassfolders from your gem to your site root from the file explorer. Or you can do it with the command line from your root:cd your/root/folder cp -R `echo "$(bundle show minima)/_*/"` .Your site will now work on
ghpages. And theme gem is now useless, because overridden by copied files. Please check the answer here.