Difference between revisions of "WP themes"

From Things and Stuff Wiki
Jump to navigation Jump to search
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{menu}}
 
{{menu}}
 +
 +
* http://wordpress.org/plugins/theme-test-drive/
  
 
== Repositories ==
 
== Repositories ==
Line 17: Line 19:
 
* LESS and possibly limited SCSS/Compass in PHP (all shared), full SCSS/etc. with Ruby (easier on VPS)
 
* LESS and possibly limited SCSS/Compass in PHP (all shared), full SCSS/etc. with Ruby (easier on VPS)
 
* Semantic CSS with grid and vertical rhythm systems
 
* Semantic CSS with grid and vertical rhythm systems
 +
 +
* http://www.reddit.com/r/Wordpress/comments/1vw37e/im_building_my_first_multipurpose_premium_theme/
  
 
== Interesting ==
 
== Interesting ==
Line 127: Line 131:
 
** h5pb
 
** h5pb
 
** not 320andup
 
** not 320andup
 
* https://github.com/320press/wordpress-bootstrap
 
** Bootstrap framework as a WordPress theme.
 
  
 
* https://github.com/wycks/WP-Skeleton-Theme - a few months ago
 
* https://github.com/wycks/WP-Skeleton-Theme - a few months ago
Line 140: Line 141:
 
* [http://designwoop.com/2012/01/wordpress-html5-frameworks/ Blank & Bare WordPress HTML5 Frameworks]
 
* [http://designwoop.com/2012/01/wordpress-html5-frameworks/ Blank & Bare WordPress HTML5 Frameworks]
  
== Other ==
+
== Bootstrap ==
* http://wordpress.org/themes/twentyeleven
+
* http://wordpress.org/themes/search.php?q=bootstrap
** https://github.com/crowdfavorite-mirrors/wp-twentyeleven
 
  
* [https://github.com/tomcreighton/Glider Glider] is a one-template-file Wordpress theme that uses jQuery's .load() function to ping Wordpress for single posts, then inline-loads the post in question - this results in the ability to read all the posts without any (apparent) page loads. The theme now also supports arrow-key navigation.
+
* https://github.com/320press/wordpress-bootstrap - Bones fork
 
+
** https://github.com/320press/wordpress-bootstrap/tree/3.0-wip
* http://bckmn.com/naked-wordpress/
 
** https://github.com/j-beckman/naked-wordpress
 
 
 
* https://github.com/themeskult/wp-svbtle
 
 
 
=== Bootstrap ===
 
* http://wordpress.org/themes/search.php?q=bootstrap
 
  
 
* http://danvswild.com/brew/ - bootstrap v3
 
* http://danvswild.com/brew/ - bootstrap v3
 
** https://github.com/slightlyoffbeat/brew
 
** https://github.com/slightlyoffbeat/brew
 +
** http://danvswild.com/2013/10/23/brew-an-easy-way-to-build-wordpress-themes-with-bootstrap-3/
  
* http://roots.io/
+
* http://roots.io/ - H5BP
 
** https://github.com/roots/roots
 
** https://github.com/roots/roots
  
Line 169: Line 163:
  
 
* https://github.com/rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress/ - not oft opdated
 
* https://github.com/rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress/ - not oft opdated
 +
 +
* https://github.com/gradualstudio/wordpress-basic-theme
 +
 +
* https://github.com/lukehayes/bootstrap_wordpress
 +
 +
* https://github.com/bassjobsen/jamedo-bootstrap-start-theme
 +
 +
* http://themekraft.com/tk-wordpress-bootstrap-starter-theme/
 +
** https://github.com/Themekraft/_tk
 +
 +
Search for: '_tk' and replace with: 'megatherium'
 +
Search for: _tk_ and replace with: megatherium_
 +
Search for:  _tk and replace with:  Megatherium
 +
Search for: _tk- and replace with: megatherium-
 +
 +
find . -type f -print0 | xargs -0 perl -pi -e "s/\'_tk'/\'euroelec'/g;"
 +
find . -type f -print0 | xargs -0 perl -pi -e "s/_tk_/euroelec_/g;"
 +
find . -type f -print0 | xargs -0 perl -pi -e "s/ _tk/ Euroelec/g;"
 +
find . -type f -print0 | xargs -0 perl -pi -e "s/_tk-/euroelec-/g;"
 +
 +
* https://github.com/shprink/Shprink-One
 +
 +
* https://github.com/SimonPadbury/bst
 +
 +
* https://github.com/bencarlson/wp-bootstrap
 +
 +
== Other ==
 +
* http://wordpress.org/themes/twentyeleven
 +
** https://github.com/crowdfavorite-mirrors/wp-twentyeleven
 +
** https://github.com/RRWD/accessible-twenty-eleven-theme
 +
 +
* [https://github.com/tomcreighton/Glider Glider] is a one-template-file Wordpress theme that uses jQuery's .load() function to ping Wordpress for single posts, then inline-loads the post in question - this results in the ability to read all the posts without any (apparent) page loads. The theme now also supports arrow-key navigation.
 +
 +
* http://bckmn.com/naked-wordpress/
 +
** https://github.com/j-beckman/naked-wordpress
 +
 +
* http://p2theme.com/
 +
 +
* https://github.com/themeskult/wp-svbtle
 +
 +
* http://cutlasswp.com/
  
 
== Build ==
 
== Build ==
 
* [http://forge.thethemefoundry.com/ Forge] is a free command-line toolkit for bootstrapping and developing WordPress themes in a tidy environment using front-end languages like Sass, LESS, and CoffeeScript.
 
* [http://forge.thethemefoundry.com/ Forge] is a free command-line toolkit for bootstrapping and developing WordPress themes in a tidy environment using front-end languages like Sass, LESS, and CoffeeScript.
 
** https://github.com/thethemefoundry/forge
 
** https://github.com/thethemefoundry/forge

Latest revision as of 14:59, 22 October 2014

Repositories

Requirements

  1. HTML5 ready. Many use HTML5 Boilerplate (or 'h5bp')
  2. Responsive, with a mobile first approach, like 320 And Up.
  3. Preproces system, to help with layout (Sass/SCSS, not too hard to add though)
  4. Grid system, to help with layout (not too hard to add though)
  5. Accessibility (basic WCAG 2.0? can be implemented later)
  6. Theme settings for easy change of, say, header (Settings API, etc.)
  • Make sure mobile devices don't get desktop size CSS or content
  • LESS and possibly limited SCSS/Compass in PHP (all shared), full SCSS/etc. with Ruby (easier on VPS)
  • Semantic CSS with grid and vertical rhythm systems

Interesting

Bones

320semanticgs

_s

Pears

Hmm

article;

Bootstrap

Search for: '_tk' and replace with: 'megatherium'
Search for: _tk_ and replace with: megatherium_
Search for:  _tk and replace with:  Megatherium
Search for: _tk- and replace with: megatherium-
find . -type f -print0 | xargs -0 perl -pi -e "s/\'_tk'/\'euroelec'/g;"
find . -type f -print0 | xargs -0 perl -pi -e "s/_tk_/euroelec_/g;"
find . -type f -print0 | xargs -0 perl -pi -e "s/ _tk/ Euroelec/g;"
find . -type f -print0 | xargs -0 perl -pi -e "s/_tk-/euroelec-/g;"

Other

  • Glider is a one-template-file Wordpress theme that uses jQuery's .load() function to ping Wordpress for single posts, then inline-loads the post in question - this results in the ability to read all the posts without any (apparent) page loads. The theme now also supports arrow-key navigation.

Build