Basement is a starting Wordpress theme based on Foundation 5 whith a bit of Bourbon magic and Html5 Boilerplate markup. It uses Foundation, Bower, Grunt and Libsass (node version) and blends forks form Roots and Reverie.
All the dependencies for Basement are contained contained in package.json (npm) and bower.json (bower). Before installation, you need to have the following installed:
- Node.js. See installation provided on their web site
- Grunt. Read the doc or run
[sudo] npm install -g grunt-cli
- Bower. Read the doc or run
[sudo] npm install -g bower
Clone the git repo git clone git@github.com:kartonnade/basement.git
or download it a zip file.
Then run :
npm install
bower install
Notes:
- cygwin user : as you might know, you can't run
npm install
in cygwin. Use another bash to run it. Once installed, you can however, rungrunt
from cygwin - you need to run
grunt dist
once to generate style and scripts for the first time as they are excluded in .gitignore - bower_components and node_modules are excluded in .gitignore
All in the console you can go like
cd yoursite/wp-content/themes
git clone git@github.com:kartonnade/basement.git
cd basement
npm install
bower install
Once installed you can simply use : grunt dev
during theme development.
This will watch your repo for updates to your SCSS, JS and PHP files and Grunt will automatically :
- compile your SCSS to CSS in a single file in an expanded style with sourcemap and debugInfo
- check your JS using jshint. This can be configured in the .jshintrc file
uglifybeautify your JS in a single file withconsole.log()
and comments preserved so that debug is easier- reload your web page using livereload browser extension
Note : Basement uses grunt-sass to compile SCSS to CSS using Libass. Some people say it is faster than the initial Sass compiler in Ruby.
You might also need to run grunt img
when you add images (svg/png/jpg) in assets/img/src
to optimize them. This will :
- optimize SVG using svgmin
- optimize PNGs and JPGs using smushit
- store the optimized images in the proper built folder
assets/img
When you feel ready to go live, run grunt dist
. This will automatically :
- compile your SCSS to CSS in a single file in an compressed style with no debugInfo
- check your JS using jshint. This can be configured in the .jshint file
- uglify your JS in a single file without
console.log()
and only some comments preserved - run
grunt img
presented above as a sub-task
Edit lib/config.php to enable or disable support for various theme functions and to define constants that are used throughout the theme such as :
- GOOGLE_ANALYTICS_ID
- DATE_FORMAT (default is dd/mm/yyyy but you can switch to mm/dd/yyyy)
- POST_EXCERPT_LENGTH
- IMAGES (folder)
Edit lib/init.php to setup custom navigation menus
Edit lib/imgages.php to setup post thumbnail and custom image size. This is supposed to make things easier for you to implement interchange.js
Use lib/custom.php to store your own functions or, alternatively, use functions.php
- cleaner menu output using basement_walker (derives from root/reverie nav_walker)
- adds
.not-click
css class for dropdown items that have '#' or empty url
Basement is released under the MIT License (MIT), the same as Foundation, Roots and Reverie.