A humble bootstrap theme.
This is a LESS project using a gulp-based build for development and bower for package management.
Pre-requisites:
- Install node.js
- Install bower
npm install -g bower - Install npm packages
npm installin repo root - Install bower packages
bower installin repo root - Start gulp
./node_modules/.bin/gulp
The default gulp task starts a development server, runs an initial build, and starts a watch task to continuously compile changes. Once gulp is running, navigate to http://localhost:8080.
index.htmlthe main index and driver. This should includes examples of any styles we implement in the same flavor as the Bootstrap examples./buildlocal development build managed by gulp and ignored in git./srcLESS source lives here. Eventually, we'll want assets and maybe JS./src/main.lessThe main less entry point. Right now the project generates a single output file, and all LESS includes are placed here. If we have optional CSS modules in the future, we'll have more than one entry point./vendorbower packages, included in LESS path./vendor/bootstrapthe bootstrap dependency.