This repository hosts code for the website at gocd.github.io which resolves to www.go.cd. The URL go.cd redirects to www.go.cd. We're using Jekyll to generate website.
gem install jekyll
More help on installation visit http://jekyllrb.com/docs/installation/
For Windows, you have to set pygments
to false
in the _config.yml
file
jekyll serve --watch
Local website can be accessed at http://localhost:4000
_config.yml
takes care of general configuration and navigation part.
root: 'Root Text'
├── url: 'Root Link'
├── icon: 'icon class name'
├── first-level:
├── - text: 'First Level Text1'
├── url: 'First Level Link1'
├── second-level:
├── - text: 'Second Level Text1'
├── url: 'Second Level Link1'
Note: when editing _config.yml
, you need to restart jekyll to see the changes._