This is a WordPress starter theme based on Foundation 5 by Zurb. I made it for myself, as a solid starter theme for new and exciting WordPress projects.
The purpose of the Foundation Press is that it should only contain the most essential, with no need to peel away unnecessary features. If you're looking for a starter theme with built-in shortcode plugins, fancypancy portfolio templates or whatnot, I'm afraid you have to look elsewhere.
You'll need to have the following items installed before continuing.
- Node.js: Use the installer provided on the NodeJS website.
- Grunt: Run
[sudo] npm install -g grunt-cli
- Bower: Run
[sudo] npm install -g bower
cd my-wordpress-folder/wp-content/themes/
git clone [email protected]:olefredrik/FoundationPress.git
mv FoundationPress your-theme-name
cd your-theme-name
npm install && bower install
While you're working on your project, run:
grunt
And you're set!
Check for Foundation Updates? Run:
foundation update
style.css
: Do not worry about this file. (For some reason) it's required by WordPress. All styling are handled in the Sass files described belowscss/_settings.scss
: Original Foundation base settings are found herescss/custom.scss
: Add your custom styling herecss/app.css
: All Sass files are minified and compiled to this file
bower_components/
: This is the source folder where all Foundation scripts are located.foundation update
will check and update scripts in this folderjs/
: jQuery, Modernizr and Foundation scripts are copied frombower_components/
to this directory, where they are minified and concatinated and enqueued in WordPress- Please note that you must run
grunt
in your terminal for the scripts to be copied. See Gruntfile.js for details