A Simple Grunt Sass Starter Template to help new users of Sass and Grunt
This project template pairs with the tutorial found on andycrone.com — A simple Grunt Sass template example for beginners - you can run through the tutorial there.
If you know what you're doing, simply clone the repo.
Enjoy.
ProjectRoot/
│
├── build/
│ ├── app.min.css
│ │ └── app.min.css.map
│ └── app.min.js/
│ └── app.min.js.map
│
├── js/
│ ├── plugins/
│ ├── vendor/
│ └── app.js
│
├── sass/
│ ├── components/
│ ├── engine/
│ │ ├── base.scss
│ │ ├── mixins.scss
│ │ ├── typography.scss
│ │ └── variables.scss
│ ├── pages/
│ ├── plugins/
│ ├── sections/
│ │ ├── footer.scss
│ │ ├── header.scss
│ │ └── main.scss
│ └── app.scss
│
├── app.scss
│
├── Gruntfile.js
├── package.json
├──.jshintrc
├──.gitignore
├── index.html
└── README.md