-
Notifications
You must be signed in to change notification settings - Fork 30
Website
The Peel website can be accessed via http://peel-framework.org.
We use a cutstomized Foundation download based on this Paletton palette this Paletton palette. The colors are mapped as follows:
- Paletton primary color ↦ Foundation primary color
- Paletton primary color ↦ Foundation success color
- Paletton secondary color ↦ Foundation secondary color
- Paletton complement color ↦ Foundation alert color
See the GitHub Jekyll documentation for instructions how to run and preview the website locally.
You'll need Ruby 2.0+ (bin + dev packages) as well as the bundler package in order to run as the GitHub documentation suggests. If you are running Ubuntu 14.04 LTS, you will find out that merely executing
sudo apt-get install ruby2.0 ruby2.0-dev bundlerdoesn't really help due to a bug in the ruby2.0 packaging. To solve the problem do as suggested by agent-8131 after that.
You might also be asked to require a JavaScript runtime from this list, e.g. with
sudo apt-get install nodejsUpon that, you should be able to install the required Ruby packages for local preview by running
sudo bundle installYou also need to install some gems:
gem install jekyll-redirect-fromfrom the gh-pages root folder.
Keep your gems up to date with
bundle updateas discussed in the "Keeping Jekyll up to date" section of the GitHub Jekyll documentation.
Once you've managed to install the required Ruby bundles, you can preview the website locally with
bundle exec jekyll serve