- Author: YoArts
- Author URL: http://www.yoarts.com
- Contributer: @yoarts, @ghost, @ashfame, @kevinpapst, @abovethewater
- License: GNU General Public License v3.0
- License URI: http://www.gnu.org/licenses/gpl-3.0.html
Flat is a WordPress Blog Theme designed by YoArts. We would like to say that Flat is both beautiful and charming at the same time.
- Grunt for compiling LESS to CSS, checking for JS errors, live reloading, concatenating and minifying files
- Bower for front-end package management
- Responsive Layout
- Off-Canvas Sidebar on Handheld Devices
- Custom Background
- Custom Sidebar Color
- Editor Style
- Write on HTML5 / LESS
- Bootstrap 3.2.0
- Font Awesome 4.1.0
- Compatible up to WordPress 3.9.2
- Customize: Logo, Favicon, Sidebar Background Color, Archive Posts, Single Post
- Google Fonts select for Customize: Body, Site Title, Heading, Sub-Heading
- Translation Ready (Language available: English, German, French, Russian, Spanish, Brazil, Nederlands)
Flat is built with the following resources:
Code based on DW Minion
- http://www.designwall.com/wordpress/themes/dw-minion/
- Copyright: DesignWall, http://www.designwall.com/
- License under GPL v3.0: http://www.gnu.org/licenses/gpl-3.0.html
Bootstrap 3.2.0
- http://getbootstrap.com/
- Copyright: @mdo: twitter.com/mdo and @fat: twitter.com/fat
Font Awesome 4.1.0
- http://fontawesome.io/
- Copyright: Dave Gandy, twitter.com/davegandy
- Font Awesome licensed under SIL OFL 1.1: http://scripts.sil.org/OFL
- Code licensed under MIT License: http://opensource.org/licenses/mit-license.html
HTML5 Shiv 3.7.2
- @afarkas @jdalton @jon_neal @rem
- MIT/GPL2 Licensed
Respond.js v1.4.2
- Copyright 2013 Scott Jehl
- Licensed under https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
- TobsCore: https://github.com/TobsCore
- Marcus Michaels: https://github.com/marcusmichaels
- Creative-mind: https://github.com/creative-mind
- Mrinal Kanti Roy: https://github.com/mkrdip
- Victor Perin: https://github.com/victorperin
- Victor Tsaran: https://github.com/vick08
- Darshan Sawardekar: https://github.com/dsawardekar
- Teddy Rilliot: https://github.com/TeddyRilliot
- Richard Alexander von Moltke Necochea: http://twitter.com/ravmn
- Фарух Джапаркулов
- Didier: http://www.wptrads.com/theme/flat-2/
- abovethewater: https://github.com/abovethewater
- Kevin Papst: http://www.kevinpapst.de/wordpress-flat-theme/
- Ashfame: https://github.com/ashfame
Flat uses Grunt for compiling LESS to CSS, checking for JS errors, live reloading, concatenating and minifying files.
Add the following to your wp-config.php on your development installation:
define('WP_ENV', 'development');Unfamiliar with npm? Don't have node installed? Download and install node.js before proceeding.
From the command line:
- Install
grunt-cliglobally withnpm install -g grunt-cli. - Navigate to the theme directory, then run
npm install. npm will look atpackage.jsonand automatically install the necessary dependencies. It will also automatically runbower install, which installs front-end packages defined inbower.json.
When completed, you'll be able to run the various Grunt commands provided from the command line.
grunt dev— Compile LESS to CSS, concatenate and validate JSgrunt watch— Compile assets when file changes are madegrunt build— Create minified assets that are used on non-development environmentsgrunt zip— Export theme package for WordPress.org