- Clone down and enter directory
- Install bundle via Ruby gems
- Run
bundle install
- Run
npm install
- Then for development you'll need to run
gulp
andbundle exec jekyll serve
at the same time. This is a WIP and will be streamlined into a single process with hot reloading soon.
- Jekyll
- Github Pages Support
- SCSS Minification/Compilation
- SCSS Compilation
- CSS Autoprefixer
- CSS Sourcemaps
- ES6 Support
- JS Minification
- JS Concat
- Error Notifications
Currently, this starter template cannot compile the CSS with front matter for Jekyll to then process. So once you're finished developing locally and you'd like to push live, follow these steps:
- Make sure bundle and gulp are still running.
- Gulp will have compiled your latest SCSS to CSS in the
assets/styles/main.css
file. So copy these contents to your clipboard. - Then in the
assets/css/styles.scss
you'll see the below:
---
---
// your css below
- Jekyll needs the dashes (front matter) at the top of the file to compile it into the
_site/
folder so keep these and replace all the CSS below the front matter with what you've copied. - Then push up your changes and you'll see your latest changes after publishing to Siteleaf :)