Basic Template Developer Kit is a simple repo designed to jump-start template development. BTDK includes LESS, jQuery and the Skeleton framework.
There are a few steps on getting started using BTDK:
- Locally clone the repo:
git clone https://github.com/OneHunnid/BTDK.git - Make sure Node.js is installed. Then you can install the dependencies using
npm installin your local repo for BTDK - Install LESS globally on your computer
- Install watch-less then set up a watch using
npm watch-lessto compile your LESS into CSS. This will compile main.less to main.less.css and render in browser. - Profit
BTDK comes with a very basic template structure:
Basic Template Developer Kit/
├── assets
│ ├── favicon.ico
│ └── favicon.psd
├── scripts
│ └── index.js
├── styles
│ ├── main.less
│ ├── main.less.css
│ ├── normalize.less
│ └── skeleton.less
├── .gitignore
├── index.html
├── package.json
└── readme.md
BTDK is free to use and abuse under the open-source MIT license