<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>quirm.net &#187; theme</title>
	<atom:link href="http://quirm.net/tag/theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://quirm.net</link>
	<description>wordpress &#38; web design</description>
	<lastBuildDate>Wed, 01 Feb 2012 17:39:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Page Of Posts</title>
		<link>http://quirm.net/2012/01/12/page-of-posts/</link>
		<comments>http://quirm.net/2012/01/12/page-of-posts/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 13:21:53 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3332</guid>
		<description><![CDATA[Our downloadable <a href=-"http://quirm.net/download/80/">Twenty Eleven Child theme</a> has now been updated to include a simple Page of Posts custom page template.]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2012/01/blue-page.png" alt="" width="150" height="150" class="alignleft size-full wp-image-3341" /> Our downloadable <a href=-"http://quirm.net/download/80/">Twenty Eleven Child theme</a> has now been updated to include a simple Page of Posts custom page template. </p>
<p>Whilst it is designed to work within a child of Twenty Eleven, it should be possible to adapt the template to suit other themes. If you are using another theme, remember that you will need to replicate the html structure of your own theme within the template.</p>
<p>You can then save your new template as <span class="italics">pageofposts.php</span>, upload it to your theme and then assign the Page of Posts template to your new Page via the Page Template Dropdown.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2012/01/12/page-of-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress SEO: Better Titles</title>
		<link>http://quirm.net/2011/10/03/wordpress-seo-better-titles/</link>
		<comments>http://quirm.net/2011/10/03/wordpress-seo-better-titles/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 08:02:39 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3081</guid>
		<description><![CDATA[The content of the HTML &#60;title&#62;&#60;/title&#62; tag is used to: Create a title in the browser toolbar Provide a title for the page when it is bookmarked Display a title for the page in search-engine results It make sense, therefore, to take some time to craft a good title in your WordPress site. In the&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/09/html.png" alt="" title="html" width="150" height="150" class="alignright size-full wp-image-3088" /> The content of the <abbr title="HyperText Markup Language">HTML</abbr> &lt;title&gt;&lt;/title&gt; tag is used to:</p>
<ul>
<li>Create a title in the browser toolbar</li>
<li>Provide a title for the page when it is bookmarked</li>
<li>Display a title for the page in search-engine results</li>
</ul>
<p>It make sense, therefore, to take some time to craft a good title in your WordPress site. In the vast majority of WordPress themes, the title is generated in the theme&#8217;s header.php template file. So you need to start by editing this file.</p>
<p><span id="more-3081"></span></p>
<p>Some themes simply use something like:</p>
<pre><code>&lt;title&gt;&lt;?php wp_title();?&gt;&lt;/title&gt;</code></pre>
<p>But that&#8217;s not nearly enough to generate a good title. What you want is code that generates informative, page-specific, titles. So try something like:</p>
<pre><code>&lt;title&gt;&lt;?php global $page, $paged;
if ( $paged &gt;= 2 || $page &gt;= 2 ) $we_are_on = sprintf( __( ' (Page %s) ' ), max( $paged, $page ) );
else $we_are_on = '';

if( is_home () ) : printf(__( '%1$s%2$s on %3$s'), wp_title('', false), $we_are_on, get_bloginfo('name') );

elseif( is_search() ) :
if( trim( get_search_query() ) == '' )  printf(__('No search query entered on %1$s'), get_bloginfo('name') );
else printf( __( 'Search Results for \'%1$s\' on %2$s%3$s' ), trim(get_search_query() ), get_bloginfo('name'), $we_are_on );

elseif ( is_category() || is_author() ) : printf(__( '%1$s%2$s on %3$s' ), wp_title('', false), $we_are_on, get_bloginfo('name') );

elseif( is_tag() ) : printf( __('Entries tagged with \'%1$s\'%2$s on %3$s') , wp_title('', false), $we_are_on, get_bloginfo('name') );

elseif( is_archive() ) :
printf( __('Archives for %1$s%2$s on %3$s'), wp_title('', false), $we_are_on, get_bloginfo('name') );

elseif( is_404() ) : printf(__( 'Page not found on %1$s' ), get_bloginfo('name')  );

else : printf( __('%1$s%2$s'), wp_title(':',true, 'right'), get_bloginfo('name') );

endif;
?&gt;
&lt;/title&gt;</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/10/03/wordpress-seo-better-titles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change eShop&#8217;s Merchant Gateway Images</title>
		<link>http://quirm.net/2011/09/30/change-eshops-merchant-gateway-images/</link>
		<comments>http://quirm.net/2011/09/30/change-eshops-merchant-gateway-images/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 21:13:24 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[eShop]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3068</guid>
		<description><![CDATA[The eShop ecommerce plugin ships with a default set of images for the various merchant gateways that can be located in wp-content\uploads\eshop_files. However, if one of these images does not suit your purposes, it&#8217;s relatively easy to change it via your theme&#8217;s functions.php file. The following example illustrates how to change the Cash icon: Upload&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2009/08/cart.png" alt="" title="Ecommerce" width="150" height="150" class="alignleft size-full wp-image-1337" /> The <a href="http://wordpress.org/extend/plugins/eshop/">eShop ecommerce plugin</a> ships with a default set of images for the various merchant gateways that can be located in <code>wp-content\uploads\eshop_files</code>. However, if one of these images does not suit your purposes, it&#8217;s relatively easy to change it via your theme&#8217;s functions.php file. The following example illustrates how to change the Cash icon:</p>
<p><span id="more-3068"></span></p>
<ol>
<li>Upload your new gateway icon to your theme&#8217;s images folder.</li>
<li>Edit your theme&#8217;s function.php file in a plain text editor and add the following new function>
<pre><code>function mythemes_icon_cash() {
	$icon = array(
		'path'=>get_stylesheet_directory(). '/images/cash.png',
		'url'=>get_stylesheet_directory_uri(). '/images/cash.png'
	);
	return $icon;
}
add_filter('eshop_merchant_img_cash', 'mythemes_icon_cash');</code></pre>
</li>
</ol>
<p>There are also filters for each of the other gateway icons:</p>
<pre><code>eshop_merchant_img_cash
eshop_merchant_img_bank
eshop_merchant_img_authorizenet
eshop_merchant_img_payson
eshop_merchant_img_paypal
eshop_merchant_img_ideallite
eshop_merchant_img_webtopay
eshop_merchant_img_ogone
eshop_merchant_img_epn</code></pre>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/09/30/change-eshops-merchant-gateway-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using $s with Double Quotes in WordPress</title>
		<link>http://quirm.net/2011/09/20/using-s-with-double-quotes-in-wordpress/</link>
		<comments>http://quirm.net/2011/09/20/using-s-with-double-quotes-in-wordpress/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 19:02:32 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[advanced]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3057</guid>
		<description><![CDATA[I came across a really worrying issue recently when a site running one of my own themes failed a PCI compliance test. The template file concerned was search.php and the offending code was &#60;?php printf( __("Sorry - I couldn't find anything on %1$s%2$s%3$s", 'theme_name'), '&#60;span&#62;', $my_searchterm, '&#60;/span&#62;');?&#62; From the test results, it seemed that $my_searchterm&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/09/warning.png" alt="" title="warning" width="150" height="150" class="alignleft size-full wp-image-3061" /> I came across a really worrying issue recently when a site running one of my own themes failed a PCI compliance test. The template file concerned was search.php and the offending code was</p>
<pre><code>&lt;?php printf( __("Sorry - I couldn't find anything on %1$s%2$s%3$s", 'theme_name'), '&lt;span&gt;', $my_searchterm, '&lt;/span&gt;');?&gt;</code></pre>
<p>From the test results, it seemed that <code>$my_searchterm</code> was not being escaped and that this was opening up an XSS-scripting hole. Yet <code>$my_searchterm</code> was escaped!</p>
<p><span id="more-3057"></span></p>
<p><code>$my_searchterm = trim(get_search_query());</code></p>
<p>After much head scratching &#8212; including some in-depth research into using <code>printf</code> with HTML tags &#8212; I&#8217;d pretty much given up on finding the root cause and was about to remove the entire line when Otto came to the rescue.</p>
<p>I&#8217;d been looking in the wrong place. The isse wasn&#8217;t with <code>$my_searchterm</code> &#8212; it was with:</p>
<pre><code>"Sorry - I couldn't find anything on '%1$s%2$s%3$s"</code></pre>
<p>The standard type specifier for a string substitution when using <code>printf</code> or <code>sprintf</code> is <code>$s</code> (<a href="http://uk.php.net/manual/en/function.sprintf.php">PHP documentation link</a>).</p>
<p>However, in WordPress, <code>$s</code> has a special meaning &#8212; it&#8217;s the <strong>unescaped</strong> search query. By using double quotes in the <code>printf</code>, I had stopped <code>$s</code> from being used as a string substitution and, instead, it was being <strong>parsed</strong> by WordPress.</p>
<p>The solution? Switch to using single quotes.</p>
<pre><code>&lt;?php printf( __('Sorry - I couldn\'t find anything on %1$s%2$s%3$s', 'theme_name'), '&lt;span&gt;', $my_searchterm, '&lt;/span&gt;');?&gt;</code></pre>
<p>Now <code>$s</code> isn&#8217;t parsed &#8212; it&#8217;s substituted.</p>
<p>All in all, I was pretty appalled at how easily I had opened up this particular security hole &#8212; despite being paranoid about sanitising generated output. I also can&#8217;t help thinking that the WP core devs weren&#8217;t having a good day when they decided to use <code>$s </code>for the search query &#8212; especially since <code>printf</code> and <code>sprintf</code> string substitutions are commonplace if you are trying to make a theme translation-ready. Something like <code>$wp_s</code> might have been far safer.</p>
<p>In the meantime, check your scripts for double-quote enclosed string substitutions or you might end up making the same mistake I did.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/09/20/using-s-with-double-quotes-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress Child Themes</title>
		<link>http://quirm.net/2011/08/01/wordpress-child-themes/</link>
		<comments>http://quirm.net/2011/08/01/wordpress-child-themes/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 12:57:41 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2795</guid>
		<description><![CDATA[Judging by some of the posts on the wordpress.org support forums, many people want to change just one or two things in either the Twenty Ten or Twenty Eleven themes. But they have difficulty creating a basic child theme. So rather than explaining how to create a child theme again&#8230; and again&#8230; and again, I&#8217;ve&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/08/twentyeleven-child.png" alt="" title="Twenty Eleven Child Theme" width="150" height="150" class="alignleft size-full wp-image-2847" /> Judging by some of the posts on the <a href="http://wordpress.org/support/">wordpress.org support forums</a>, many people want to change just one or two things in either the Twenty Ten or Twenty Eleven themes. But they have difficulty creating a basic child theme.</p>
<p><span id="more-2795"></span></p>
<p>So rather than explaining <a href="http://codex.wordpress.org/Child_Themes">how to create a child theme</a> again&#8230; and again&#8230; and again, I&#8217;ve uploaded two new <a href="http://quirm.net/themes/">theme downloads</a> &#8211; a <a href="http://quirm.net/download/79/">Twenty Ten child theme</a> &#038; a <a href="http://quirm.net/download/80/">Twenty Eleven child theme</a>. </p>
<p><strong>Please note</strong> that these downloadable child themes do <strong>not</strong> implement any changes. They are purely &#8220;blank slates&#8221; for you add your own customisations to. </p>
<p>Simply upload the themes to your WordPress site, activate one of them and start customising!</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/08/01/wordpress-child-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZenLite 4.3</title>
		<link>http://quirm.net/2011/07/10/zenlite-4-3/</link>
		<comments>http://quirm.net/2011/07/10/zenlite-4-3/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 21:18:38 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2777</guid>
		<description><![CDATA[Just pushed out a quick bug-fix update for the ZenLite theme. One of the theme&#8217;s users alerted me to a typo in format-image.php which was, unfortunately, triggering a fatal error when the Image post format was applied to a post. Apologies to anyone who was hit by this bug. Please update to the new version&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2010/02/zenlite-150x132.jpg" alt="" title="ZenLite Theme" width="150" height="132" class="alignleft size-thumbnail wp-image-1505" /> Just pushed out a quick bug-fix update for the <a href="http://quirm.net/zenlite/">ZenLite theme</a>. One of the theme&#8217;s users alerted me to a typo in format-image.php which was, unfortunately, triggering a fatal error when the Image post format was applied to a post.</p>
<p>Apologies to anyone who was hit by this bug. Please <a href="http://quirm.net/download/61/">update to the new version</a> to correct the problem. Thanks also to the <a href="http://make.wordpress.org/themes/">wordpress.org Theme Review Team </a>who managed to get the new version into the <a href="http://wordpress.org/extend/themes/">Theme Repository</a> within 24 hours of the updated version being submitted.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/07/10/zenlite-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZenLite Petal</title>
		<link>http://quirm.net/2011/05/17/zenlite-petal/</link>
		<comments>http://quirm.net/2011/05/17/zenlite-petal/#comments</comments>
		<pubDate>Tue, 17 May 2011 18:35:46 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2653</guid>
		<description><![CDATA[New theme release! ZenLite Petal &#8212; a bright &#038; juicy child theme for ZenLite with added Google Fonts! As with ZenLite, this theme has full support for all WordPress post formats with the Dancing Script font used for Quote post formats. The Tangerine font is used for the main site heading whilst Post &#038; Page&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/05/ZenLitePetalThumb.png" alt="" title="ZenLite Petal" width="150" height="150" class="alignleft size-full wp-image-2655" /> New theme release!</p>
<p><a href="http://quirm.net/zenlite/zenlite-petal/">ZenLite Petal</a> &#8212; a bright &#038; juicy child theme for ZenLite with added Google Fonts!</p>
<p>As with ZenLite, this theme has full support for all <a href="http://codex.wordpress.org/Post_Formats">WordPress post formats</a> with the <a href="http://www.google.com/webfonts/family?family=Dancing+Script&#038;subset=latin">Dancing Script font</a> used for Quote post formats. The <a href="http://www.google.com/webfonts/family?family=Tangerine&#038;subset=latin">Tangerine font</a> is used for the main site heading whilst Post &#038; Page headers use the <a href="http://www.google.com/webfonts/list?family=Open+Sans&#038;subset=latin">Open Sans font</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/05/17/zenlite-petal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZenLite Citrus</title>
		<link>http://quirm.net/2011/05/12/zenlite-citrus/</link>
		<comments>http://quirm.net/2011/05/12/zenlite-citrus/#comments</comments>
		<pubDate>Thu, 12 May 2011 16:16:54 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2622</guid>
		<description><![CDATA[New theme release! ZenLite Citrus &#8212; a bright &#038; juicy child theme for ZenLite with added Google Fonts! As with ZenLite, this theme has full support for all WordPress post formats with the Dancing Script font used for Quote post formats. The Lobster font is used for the main site heading whilst Post &#038; Page&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/05/ZenLiteCitrusThumb.png" alt="" title="ZenLite Citrus" width="150" height="150" class="alignleft size-full wp-image-2632" /> New theme release!</p>
<p><a href="http://quirm.net/zenlite/zenlite-citrus/">ZenLite Citrus</a> &#8212; a bright &#038; juicy child theme for ZenLite with added Google Fonts!</p>
<p>As with ZenLite, this theme has full support for all <a href="http://codex.wordpress.org/Post_Formats">WordPress post formats</a> with the <a href="http://www.google.com/webfonts/family?family=Dancing+Script&#038;subset=latin">Dancing Script font</a> used for Quote post formats. The <a href="http://www.google.com/webfonts/family?family=Lobster&#038;subset=latin">Lobster font</a> is used for the main site heading whilst Post &#038; Page headers use the <a href="http://www.google.com/webfonts/list?family=Open+Sans&#038;subset=latin">Open Sans font</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/05/12/zenlite-citrus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emporium Update</title>
		<link>http://quirm.net/2011/05/12/emporium-update-2/</link>
		<comments>http://quirm.net/2011/05/12/emporium-update-2/#comments</comments>
		<pubDate>Thu, 12 May 2011 15:00:47 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[eShop]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2620</guid>
		<description><![CDATA[Just released version 3.0 of the Emporium eShop theme. This release corrects a major issue with custom backgrounds which was brought to light on the Quirm.net Themes forum a few hours ago. Thanks to stug2000 for bringing this to my attention. How everyone else managed to miss it over the last 8 months is completely&#8230;]]></description>
			<content:encoded><![CDATA[<p>Just released <a href="http://quirm.net/emporium/">version 3.0 of the Emporium eShop theme</a>. This release corrects a major issue with custom backgrounds which was brought to light on the <a href="http://quirm.net/forum/forum.php?id=15">Quirm.net Themes forum</a> a few hours ago. </p>
<p>Thanks to stug2000 for bringing this to my attention. How everyone else managed to miss it over the last 8 months is completely beyond me!</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/05/12/emporium-update-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZenLite Blue</title>
		<link>http://quirm.net/2011/05/10/zenlite-blue/</link>
		<comments>http://quirm.net/2011/05/10/zenlite-blue/#comments</comments>
		<pubDate>Tue, 10 May 2011 10:39:05 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2594</guid>
		<description><![CDATA[Just released ZenLite Blue &#8212; a WordPress child theme for ZenLite. All of the same functionality as its parent theme but with a blue skin. Hopefully, this is the first of a a range of child themes for ZenLite to be released over the next few weeks. The focus will be a range of different&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/05/ZenliteBlueThumb.png" alt="" title="Zenlite Blue" width="150" height="150" class="alignleft size-full wp-image-2592" /> Just released <a href="http://quirm.net/zenlite-blue/">ZenLite Blue</a> &#8212; a WordPress child theme for ZenLite.</p>
<p>All of the same functionality as its parent theme but with a blue skin. Hopefully, this is the first of a a range of child themes for ZenLite to be released over the next few weeks. The focus will be a range of different colours rather than any additional functionality as the theme appears to fulfil a particular need amongst users as a simple, single column, design.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/05/10/zenlite-blue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

