Skip to content

Basement is a strating wordpress theme based on Foundation (+ a bit of Bourbon magic). It mainly derives from Reverie and Roots and uses Bower, Grunt and Libsass.

License

Notifications You must be signed in to change notification settings

charleslouis/basement

Repository files navigation

Basement

Based on Foundation

Built with Grunt

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.

Prerequisites and dependancies

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

Installation

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, run grunt 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

Theme development and usage

Compile and livereload

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
  • uglify beautify your JS in a single file with console.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.

Optimize images

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

Get ready for distribution

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

Configuration

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

Features

Menu

  • 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

Licence

Basement is released under the MIT License (MIT), the same as Foundation, Roots and Reverie.

About

Basement is a strating wordpress theme based on Foundation (+ a bit of Bourbon magic). It mainly derives from Reverie and Roots and uses Bower, Grunt and Libsass.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published