<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>WPD-Planet: Theme-Channel</title>
        <description>Theme-Channel</description>
        <link>http://planet.wpde.org/themes/</link>
        <lastBuildDate>Fri, 10 Feb 2012 20:01:17 +0100</lastBuildDate>
        <pubDate>Fri, 10 Feb 2012 18:01:17 +0100</pubDate>
        <item>
            <title>WP.org Theme Directory: gitem</title>
            <link>http://wordpress.org/extend/themes/gitem</link>
            <description>A simple template based blue and green tones, simple and clean, I hope you like it. &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WP.org Theme Directory&lt;/a&gt;</description>
        </item>
        <item>
            <title>WP.org Theme Directory: MxS2</title>
            <link>http://wordpress.org/extend/themes/mxs2</link>
            <description>A theme in black and white,5 widgets/thumbnail/custom-menu supported, custom header-image/custom background and 2 post-formats available, no plugins required, used for WordPress 3.0+. &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WP.org Theme Directory&lt;/a&gt;</description>
        </item>
        <item>
            <title>WP.org Theme Directory: NightSkyLine</title>
            <link>http://wordpress.org/extend/themes/nightskyline</link>
            <description>A clean, readable theme with mobile support. &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WP.org Theme Directory&lt;/a&gt;</description>
        </item>
        <item>
            <title>WP.org Theme Directory: Rumput Hijau</title>
            <link>http://wordpress.org/extend/themes/rumput-hijau</link>
            <description>Clean and SEO optimized theme, microformats structure, breadcrumbs ready, 2 different layouts, 7 font stack, custom menu, custom header, custom body background, wordpress thumbnail and custom logo &amp; favicon uploader. Compatible with WordPress 3.3, sticky posts, widget-ready, fullwidth page ready, threaded comments ready &amp; translation ready &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WP.org Theme Directory&lt;/a&gt;</description>
        </item>
        <item>
            <title>WP.org Theme Directory: Polos</title>
            <link>http://wordpress.org/extend/themes/polos</link>
            <description>HTML5 minimalist black-on-white theme, no-nonsense, built for modern browsers ONLY (IE &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WP.org Theme Directory&lt;/a&gt;</description>
        </item>
        <item>
            <title>WP.org Theme Directory: Orange and Black</title>
            <link>http://wordpress.org/extend/themes/orange-and-black</link>
            <description>Modern theme with decent design. Orange and black are main colors used in the theme. Menu is widgetized. xHTML/CSS code is light/optimized. &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://wordpress.org/extend/themes/&quot;&gt;WP.org Theme Directory&lt;/a&gt;</description>
        </item>
        <item>
            <title>ThemeShaper: New Default WordPress Theme Twenty Twelve Hits Core for 3.4</title>
            <link>http://feeds.themeshaper.com/~r/ThemeShaper/~3/zIQ7D4HXu_s/</link>
            <description>Speaking of WordPress Themes in 2012, the new WordPress default theme for this year is in da hizzous.
For the 3.4 release cycle the core WordPress team is trying something new: assigning small teams to tackle various parts of the release. The Twenty Twelve team is Matt Mullenweg (Holder of the Keys and Grand Master Themengineer), Drew Strojny (Designer and Minimalist), and Lance Willett (Thematurge).
Want to keep tabs on this new default WordPress theme? Follow development updates on WordPress ... &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://themeshaper.com&quot;&gt;ThemeShaper&lt;/a&gt;</description>
        </item>
        <item>
            <title>ThemeShaper: WordPress Themes in 2012</title>
            <link>http://feeds.themeshaper.com/~r/ThemeShaper/~3/c5M8aJB7Z5s/</link>
            <description>The other day I was asked over dinner what I thought WordPress Themes were going to look like in 2012. The big themes and ideas — the future! &amp;#8212; that sort of thing. It&amp;#8217;s something I love talking about and sharing (obviously). I see two big trends making their way through the WordPress community. Here&amp;#8217;s what I said.
Lighter Themes
Man, WordPress Theme options. People love arguing about them don&amp;#8217;t they? This is the year we start to say goodbye to them. Or some of them, ... &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://themeshaper.com&quot;&gt;ThemeShaper&lt;/a&gt;</description>
        </item>
        <item>
            <title>ThemeShaper: Better WordPress Theme Internationalization with Pig Latin!</title>
            <link>http://feeds.themeshaper.com/~r/ThemeShaper/~3/vyR7-xVxgN8/</link>
            <description>During the process of creating my first public WordPress theme one thing was very important to me &amp;#8211; I wanted the theme to be useful to as many people as possible. To reach this goal, I knew that I would need to make sure that my theme could be used in any language. Luckily, WordPress core provides a few different functions that makes this pretty easy to do. If this is a new topic for you, please read more about Internationalization for WordPress Developers in the codex.

By using functions ... &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://themeshaper.com&quot;&gt;ThemeShaper&lt;/a&gt;</description>
        </item>
        <item>
            <title>ThemeShaper: * { box-sizing: border-box; } FTW</title>
            <link>http://feeds.themeshaper.com/~r/ThemeShaper/~3/jqhNN1uj23k/</link>
            <description>Paul Irish on HTML element widths being inclusive of padding at all times. That is to say if I define my box as 200 pixels wide then it should stay at a total of 200 pixels, no matter what I use for its padding value.
The money shot is as follows:

* { /* apply a natural box layout model to all elements */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

Also, an interesting read on using * and its impact on performance.
You might get up in arms about ... &lt;br/&gt;&lt;br/&gt;Reblogged via &lt;a href=&quot;http://themeshaper.com&quot;&gt;ThemeShaper&lt;/a&gt;</description>
        </item>
    </channel>
</rss>

