Mastering Jekyll for Static Content!
A Quick Start Guide to Jekyll
Use the following step to create your basic static site with Jekyll:
- Install Jekyll and Bundler gems through RubyGems
~ $ gem install jekyll bundler
- Create a new Jekyll site at ./myblog
~ $ jekyll new myblog
- Change into your new directory
~ $ cd myblog
- Build the site on the preview server
~/myblog $ bundle exec jekyll serve
- Now browse to http://localhost:4000
For more information go to https://jekyllrb.com/docs/quickstart/