Open inpromotion opened 3 years ago
@joshgerdes , do you support Jekyll Uno theme or not?
@inpromotion Sorry, I do not support individual installations of Jekyll with this theme applied. I also do not provide technical support for the installation of Jekyll or supporting gem bundles.
@joshgerdes ok. Do you tell me minimal requierments to Jekyll Uno?
Thx!
Right now the project for this theme is setup to run on github pages that is why it uses the gem github-pages
. It looks like the current version of that gem uses Jekyll 3.9.0. You can see what is used/installed with that gem package by running bundle exec github-pages versions
(more info can be found at https://github.com/github/pages-gem).
To get it to run with the latest Jekyll v4.1.1 you need to tweak the gemfile as follows:
source 'https://rubygems.org'
gem 'jekyll-paginate'
gem 'jekyll-watch'
gem 'kramdown'
gem 'kramdown-parser-gfm'
@joshgerdes thx for the answers!
I try to serve your theme on jekyll v.4.1.1. But after
bundle exec jekyll serve
i have problems with nokogiri.After
bundle install
How to solve this problems?