https://github.com/hamidraza/grunt-static-website-boilerplate
Static website Boilerplate with Grunt (SASS, CoffeeScript, jade)
https://github.com/hamidraza/grunt-static-website-boilerplate
Last synced: about 2 months ago
JSON representation
Static website Boilerplate with Grunt (SASS, CoffeeScript, jade)
- Host: GitHub
- URL: https://github.com/hamidraza/grunt-static-website-boilerplate
- Owner: hamidraza
- License: mit
- Created: 2014-06-10T18:20:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-10T22:27:20.000Z (almost 11 years ago)
- Last Synced: 2025-01-29T23:18:24.410Z (4 months ago)
- Language: CSS
- Size: 168 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Grunt Static website Boilerplate
================================Static website Boilerplate with [Grunt](http://gruntjs.com/) ([Sass](http://sass-lang.com/), [CoffeeScript](http://coffeescript.org/), [jade](http://jade-lang.com/))
### Start developing
###### Run in terminal'npm install'
'grunt prod'
'grunt dev' or 'grunt' for developmentNow start changin `.sass`, `.coffee` or `.jade` files and save.
Relavent css, js and html files will get generated automatically.###### Add New HTML files
Create `.jade` file (ex: services.jade) in `./jade` folder and add like following code for compile in file `Gruntfile.js`jade: {
....
files: {
"services.html": "services.jade",
....
}
....
}###### Dependencies
1. [Node.js](http://nodejs.org/)
1. [Grunt-cli](https://www.npmjs.org/package/grunt-cli) - `npm install -g grunt-cli`