Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.53 KB

readme.md

File metadata and controls

53 lines (38 loc) · 1.53 KB

Jekyll bundle bootstrap

Bundled with bundler with asset pipeline, sass, compass, coffeescript, YUI compressor

Requirements

Run

cd /path/to/project/
bundle install
bower install
bundle exec jekyll serve -w

And open http://localhost:4000

To run in Vagrant (all requirements are already packed in VM)

Install Vagrant and VirtualBox

cd /path/to/project/
vagrant up
vagrant ssh
cd /vagrant
bundle install
bower install
bundle exec jekyll serve -w

And open http://localhost:4000

Assets

Assets Pipeline included. See instructions here: https://github.com/matthodan/jekyll-asset-pipeline#jekyll-asset-pipeline

Compass included so just use it

For multilanguage sites

  • Add to Gemfile: gem 'jekyll-multiple-languages-plugin'
  • Create file /src/_plugins/multi_language.rb
  • Put there: require 'jekyll/multiple/languages/plugin'
  • Run bundle install

Usage instructions can be found here: https://github.com/screeninteraction/jekyll-multiple-languages-plugin#usage