Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Sage | 12,107 | 6 | 3 | 6 days ago | 40 | July 19, 2022 | 13 | mit | PHP | |
WordPress starter theme with Laravel Blade components and templates, Tailwind CSS, and a modern development workflow | ||||||||||
Timber | 5,209 | 131 | 77 | 10 days ago | 115 | June 22, 2022 | 209 | mit | PHP | |
Create WordPress themes with beautiful OOP code and the Twig Template Engine | ||||||||||
Typography.js | 3,757 | 2,206 | 186 | 4 months ago | 79 | May 10, 2021 | 95 | mit | JavaScript | |
A powerful toolkit for building websites with beautiful design | ||||||||||
Argon Theme | 3,160 | 2 months ago | 120 | gpl-3.0 | PHP | |||||
📖 Argon - 一个轻盈、简洁的 WordPress 主题 | ||||||||||
Understrap | 2,957 | 81 | 1 | 4 days ago | 37 | November 08, 2021 | 75 | gpl-3.0 | CSS | |
Underscores + Bootstrap = Understrap, the renowned open-source WordPress starter theme. | ||||||||||
Sakura | 2,947 | 2 months ago | 20 | gpl-2.0 | PHP | |||||
A Wonderful WordPress Theme: 樱花庄的白猫博客主题 | ||||||||||
Frontity | 2,823 | 6 | 67 | 2 months ago | 60 | July 19, 2022 | 66 | apache-2.0 | TypeScript | |
» Frontity - The React Framework for WordPress | ||||||||||
Foundationpress | 2,780 | 4 years ago | 35 | April 12, 2019 | 55 | mit | PHP | |||
FoundationPress is a WordPress starter theme based on Foundation 6 by Zurb | ||||||||||
Kratos | 2,713 | 2 days ago | 6 | gpl-3.0 | PHP | |||||
📖 WordPress theme that focus on reading experience | ||||||||||
Plugin Update Checker | 1,927 | 63 | 30 | 23 days ago | 31 | July 24, 2022 | 79 | mit | PHP | |
A custom update checker for WordPress plugins. Useful if you don't want to host your project in the official WP repository, but would still like it to support automatic updates. Despite the name, it also works with themes. |
This is a WordPress starter theme based on the awesome Foundation 5 by Zurb. This Foundation theme differs from the rest as it makes use to the fantastic Timber Library allowing you to use the Twig templating language. Timber facilitates a separation of concerns in Wordpress splitting the data and view of your project.
I personally don't like the lightbox and slider plugins that are included with Foundation 5 so I have included lightbox 2(Still a classic!) and Slick. These are installed when you you run bower install
. This is obviously personal taste and can easily be removed by removing them from the bower.json file. See the bower site for more details about package management.
Please fork, copy, modify, delete, share or do whatever you like with this.
All contributions are welcome!
A brief explanation to the requirements (feel free to skip this if you're a pro):
Back in the days we wrote all styles in the style.css file. Then we realized that this could quickly create clutter and confusion, especially in larger projects. Foundation uses SASS (equivalent to LESS, used in Bootstrap). In short, SASS is a CSS pre-processor that allows you to write styles more effectively and tidy.
To compile SASS files into one style sheet, we use a tool called Gulp. In short, Gulp is a task runner that automates repetitive tasks like minification, compilation, linting, etc. Gulp and Gulp plugins are installed and managed via npm, the Node.js package manager. Before setting up Gulp ensure that your npm is up-to-date by running npm update -g npm
(this might require sudo
on certain systems)
Bower is a package manager used by Zurb to distribute Foundation. When you have Bower installed, you will be able to run bower update
in the terminal to update Foundation to the latest version. (After an upgrade you must run gulp
to recompile files).
Okay, so you'll need to have the following items installed before continuing.
[sudo] npm install --global gulp
[sudo] npm install -g bower
cd my-wordpress-folder/wp-content/themes/
git clone https://github.com/jim-at-jibba/timber-foundation-theme.git
mv timber-foundation-theme your-theme-name
cd your-theme-name
npm install && bower install && gulp
While you're working on your project, run:
gulp
And you're set!
Check for Updates? Run:
bower 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 below
Coming Soon
bower_components/
: This is the source folder where all Foundation components are located. bower update
will check and update scripts in this folder.
src/js/
: This is where you put all your custom scripts. Every .js file you put in this directory will be minified and concatinated to [script.js]. The folder will be created when you first run gulp.
Please note that you must run gulp
in your terminal for the script to be copied and concatinated.
Pull requests are highly appreciated. Here are some guidelines to help: