First, we need some basic tools. Install, Ruby and Bundle, then run (under this directory):
bundle config set --local path 'vendor'
bundle install
All we need to do now is:
bundle exec jekyll build -d docs
That will generate the webpage.
See one of the examples inside _posts
and follow their template. If lost, google
"jekyll post example template for minima".
Continuosly build and run http server with:
bundle exec jekyll serve -d docs
Now go to: http://localhost:4000
Do NOT forget to build
the website before commiting! ("generation" section above).