<?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>ThemeBuilder &#187; Theme</title>
	<atom:link href="http://themebuilder.nl/tag/theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://themebuilder.nl</link>
	<description>Themes and Tricks</description>
	<lastBuildDate>Tue, 15 May 2012 13:57:14 +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>Customize Widgets</title>
		<link>http://themebuilder.nl/customize-widgets/</link>
		<comments>http://themebuilder.nl/customize-widgets/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 21:06:01 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=266</guid>
		<description><![CDATA[Always want to assigns icons to the widgets in the sidebar? I show you how it´s done just by adding a few lines to your theme’s CSS. This tutorial is intended for people with basic XHTML / CSS skills. Structure Widget ready themes are built in such a way that each widget acts as an [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Customize Widgets" href="http://themebuilder.nl/customize-widgets/" target="_self"><img class="aligncenter size-full wp-image-421" title="widget" src="http://themebuilder.nl/wp-content/uploads/2009/12/widget1.jpg" alt="" width="540" height="115" /></a><br />
Always want to assigns icons to the widgets in the sidebar? I show you how it´s done just by adding a few lines to your theme’s CSS. This tutorial is intended for people with basic XHTML / CSS skills.</p>
<p><strong>Structure</strong><br />
Widget ready themes are built in such a way that each widget acts as an item of a bulleted list. So your sidebar HTML will look something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;widget1&quot;</span> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">&quot;widget widget_1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Widget1 Content<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;widget2&quot;</span> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">&quot;widget widget_2&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Widget2 Content<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;widget3&quot;</span> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">&quot;widget widget_3&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Widget3 Content<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p><strong><span id="more-266"></span>The widget</strong><br />
Notice how each list item has an id attribute and a class attribute. Each widget has a generic style (widget) and a specific style (widget_1, widget_2, etc.). For example, the style for the Padges widget is widget_pages.</p>
<p>The HTML generated by each WordPress widget is also a bulleted list and it looks something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;a</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;http://www.themebuilder.nl&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Link Text 1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;a</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;http://www.themebuilder.nl&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Link Text 2<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;li<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;a</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;http://www.themebuilder.nl&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Link Text 3<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/li<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p><strong>Styling</strong><br />
First you need to upload the icon file to your theme’s images folder.For example the pages icon is called articles.png. I&#8217;ve added these lines of code to the style.css:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.widget_pages</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">images/articles.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span> <span style="color: #933;">17px</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&lt;!--more--<span style="color: #00AA00;">&gt;</span>&lt;!--more--<span style="color: #00AA00;">&gt;</span></pre></div></div>

<p>You have to replace .widget_pages with the class name for the widget you are trying to style. How will you know that? Just drag and drop the widget, open your blog, do a View Source and search for the widget name. You should then be able to identify both the id and the class attributes mentioned above.</p>
<p><strong>Keep styling</strong><br />
Getting the hang of it? Try styling the title and background also.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/customize-widgets/&amp;t=Customize+Widgets" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Customize+Widgets+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/customize-widgets/&amp;title=Customize+Widgets&amp;summary=%0D%0AAlways%20want%20to%20assigns%20icons%20to%20the%20widgets%20in%20the%20sidebar%3F%20I%20show%20you%20how%20it%C2%B4s%20done%20just%20by%20adding%20a%20few%20lines%20to%20your%20theme%E2%80%99s%20CSS.%20This%20tutorial%20is%20intended%20for%20people%20with%20basic%20XHTML%20%2F%20CSS%20skills.%0D%0A%0D%0AStructure%0D%0AWidget%20ready%20themes%20are%20built%20in%20such%20a%20way%20that%20each%20widget%20acts%20as%20an%20item%20of%20&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/customize-widgets/&amp;n=Customize+Widgets&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/customize-widgets/&amp;title=Customize+Widgets" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/customize-widgets/&amp;title=Customize+Widgets" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/customize-widgets/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/customize-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working on new functions for Color3</title>
		<link>http://themebuilder.nl/working-on-extra-functions-for-color3/</link>
		<comments>http://themebuilder.nl/working-on-extra-functions-for-color3/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 21:19:18 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Color3]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=159</guid>
		<description><![CDATA[Hi there. Also liking the Color3 theme? But you don&#8217;t like the background? I&#8217;ve got some news for you. Currently I&#8217;m working on a update. In this update there&#8217;s a feature in which it&#8217;s possible to change the theme background. Thus, this update will come with six colorful backgrounds. I&#8217;m debugging at the moment.  I [...]]]></description>
			<content:encoded><![CDATA[<p><a title="New functions Color3" href="http://themebuilder.nl/working-on-extra-functions-for-color3/" target="_self"><img class="aligncenter size-full wp-image-249" title="colorfull" src="http://themebuilder.nl/wp-content/uploads/2009/11/colorfull.jpg" alt="colorfull" width="540" height="115" /></a></p>
<p>Hi there. Also liking the Color3 theme? But you don&#8217;t like the background? I&#8217;ve got some news for you.</p>
<p>Currently I&#8217;m working on a update. In this update there&#8217;s a feature in which it&#8217;s possible to change the theme background. Thus, this update will come with six colorful backgrounds.</p>
<p>I&#8217;m debugging at the moment.  I trust it will be available soon.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/working-on-extra-functions-for-color3/&amp;t=Working+on+new+functions+for+Color3" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Working+on+new+functions+for+Color3+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (11)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/working-on-extra-functions-for-color3/&amp;title=Working+on+new+functions+for+Color3&amp;summary=%0D%0A%0D%0AHi%20there.%20Also%20liking%20the%20Color3%20theme%3F%20But%20you%20don%27t%20like%20the%20background%3F%20I%27ve%20got%20some%20news%20for%20you.%0D%0A%0D%0ACurrently%20I%27m%20working%20on%20a%20update.%20In%20this%20update%20there%27s%20a%20feature%20in%20which%20it%27s%20possible%20to%20change%20the%20theme%20background.%20Thus%2C%20this%20update%20will%20come%20with%20six%20colorful%20backgrounds.%0D%0A%0D%0AI%27m%20d&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/working-on-extra-functions-for-color3/&amp;n=Working+on+new+functions+for+Color3&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/working-on-extra-functions-for-color3/&amp;title=Working+on+new+functions+for+Color3" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/working-on-extra-functions-for-color3/&amp;title=Working+on+new+functions+for+Color3" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/working-on-extra-functions-for-color3/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/working-on-extra-functions-for-color3/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; functions.php</title>
		<link>http://themebuilder.nl/wordpress-functions-php/</link>
		<comments>http://themebuilder.nl/wordpress-functions-php/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 22:38:20 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=155</guid>
		<description><![CDATA[Functions.php is a little known wordpress template file. Not many themes take advantage of it but , used properly, it can be incredibly powerful. The file can be used as a way to add your own functions to wordpress themes (hence the name). One of the common misconceptions, at least based upon my experience with [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><a title="Wordpress - functions.php" href="http://themebuilder.nl/wordpress-functions-php/" target="_self"><img class="aligncenter size-full wp-image-243" title="functions" src="http://themebuilder.nl/wp-content/uploads/2009/11/functions.jpg" alt="functions" width="540" height="115" /></a></p>
<p><a href="http://codex.wordpress.org/Theme_Development#Functions_File">Functions.php is a little known wordpress template file</a>. Not many themes take advantage of it but , used properly, it can be incredibly powerful. The file can be used as a way to add your own functions to wordpress themes (hence the name).</p>
<p>One of the common misconceptions, at least based upon my experience with a past wordpress tips and tricks post, is that editing functions.php involves changing core wordpress files &#8211; meaning there will be issues when you upgrade wordpress.</p>
<p>I am against changing core files in wordpress. This makes upgrading a nightmare.</p>
<p>What functions.php does is let you create functions you can reuse in the theme. It works like a plugin file, being loaded when the theme is first loaded. You can then use the functions inside for anything you choose.  You can also use functions.php as to implement theme control panel pages.</p>
<p>And how do you make use of functions.php? It couldn&#8217;t be simpler.</p>
<ol>
<li>Create a file called functions.php in your theme folder.</li>
<li>Add functions to it.</li>
</ol>
<p>The file automatically gets included into the theme, you don&#8217;t have to do anything.</p>
</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/wordpress-functions-php/&amp;t=Wordpress+-+functions.php" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+-+functions.php+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/wordpress-functions-php/&amp;title=Wordpress+-+functions.php&amp;summary=%0D%0A%0D%0A%0D%0A%0D%0AFunctions.php%20is%20a%20little%20known%20wordpress%20template%20file.%20Not%20many%20themes%20take%20advantage%20of%20it%20but%20%2C%20used%20properly%2C%20it%20can%20be%20incredibly%20powerful.%20The%20file%20can%20be%20used%20as%20a%20way%20to%20add%20your%20own%20functions%20to%20wordpress%20themes%20%28hence%20the%20name%29.%0D%0A%0D%0AOne%20of%20the%20common%20misconceptions%2C%20at%20least%20based%20&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/wordpress-functions-php/&amp;n=Wordpress+-+functions.php&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/wordpress-functions-php/&amp;title=Wordpress+-+functions.php" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/wordpress-functions-php/&amp;title=Wordpress+-+functions.php" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/wordpress-functions-php/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/wordpress-functions-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Color3 WordPress theme</title>
		<link>http://themebuilder.nl/download-color3-wordpress-theme/</link>
		<comments>http://themebuilder.nl/download-color3-wordpress-theme/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:53:40 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Color3]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=152</guid>
		<description><![CDATA[Theme Color3 is a colorful clean and stylish theme with two columns, right sidebar dropdown menu and widget-ready. Enjoy!. Preview You can download the Color3 theme here. Share this on Facebook Tweet This! Share this on LinkedIn Blog this on Blogger Share this on del.icio.us Stumble upon something good? Share it on StumbleUpon Share this [...]]]></description>
			<content:encoded><![CDATA[<p>Theme Color3 is a colorful clean and stylish theme with two columns, right sidebar dropdown menu and widget-ready. Enjoy!.</p>
<p><a title="Preview theme" href="http://wp-themes.com/color3?TB_iframe=true&amp;width=1122&amp;height=753" target="_blank">Preview</a></p>
<p><a title="Wordpress download page" href="http://wordpress.org/extend/themes/color3" target="_self">You can download the Color3 theme here.</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/download-color3-wordpress-theme/&amp;t=Download+Color3+Wordpress+theme" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Download+Color3+Wordpress+theme+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/download-color3-wordpress-theme/&amp;title=Download+Color3+Wordpress+theme&amp;summary=Theme%20Color3%20is%20a%20colorful%20clean%20and%20stylish%20theme%20with%20two%20columns%2C%20right%20sidebar%20dropdown%20menu%20and%20widget-ready.%20Enjoy%21.%0D%0A%0D%0APreview%0D%0A%0D%0AYou%20can%20download%20the%20Color3%20theme%20here.&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/download-color3-wordpress-theme/&amp;n=Download+Color3+Wordpress+theme&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/download-color3-wordpress-theme/&amp;title=Download+Color3+Wordpress+theme" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/download-color3-wordpress-theme/&amp;title=Download+Color3+Wordpress+theme" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/download-color3-wordpress-theme/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/download-color3-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Finally green light</title>
		<link>http://themebuilder.nl/finally-green-light/</link>
		<comments>http://themebuilder.nl/finally-green-light/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:28:30 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[approved]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=137</guid>
		<description><![CDATA[It took some time, blood and tears but finally Color3 theme is approved by WordPress.org. From today it is categorized under the Free Themes Directory on wordpress.org. Before approval the WordPress team pointed me at some bugs in my Color3 theme. I&#8217;m thankful for their support and patience. They found every little bug and more.  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themebuilder.nl/finally-green-light" target="_self"><img class="aligncenter size-full wp-image-239" title="color3" src="http://themebuilder.nl/wp-content/uploads/2009/11/color31.jpg" alt="color3" width="540" height="115" /></a><br />
It took some time, blood and tears but finally Color3 theme is approved by WordPress.org. From today it is categorized under the <a title="Free Themes" href="http://wordpress.org/extend/themes/" target="_blank">Free Themes Directory</a> on wordpress.org.</p>
<p>Before approval the WordPress team pointed me at some bugs in my Color3 theme. I&#8217;m thankful for their support and patience. They found every little bug and more.  Still, there are some parts of the theme I&#8217;d  like to change. So look out for updates so now and then.</p>
<p>My expectations are high. I guess the Color3 theme will be more popular then the  <a title="theme MMystique" href="http://themebuilder.nl/theme-mmystique/" target="_self">MMystique theme</a> .  Hopefully it will reach thousand downloads within days.</p>
<p>Time will tell.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/finally-green-light/&amp;t=Finally+green+light" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Finally+green+light+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/finally-green-light/&amp;title=Finally+green+light&amp;summary=%0D%0AIt%20took%20some%20time%2C%20blood%20and%20tears%20but%20finally%20Color3%20theme%20is%20approved%20by%20Wordpress.org.%20From%20today%20it%20is%20categorized%20under%20the%20Free%20Themes%20Directory%20on%20wordpress.org.%0D%0A%0D%0ABefore%20approval%20the%20Wordpress%20team%20pointed%20me%20at%20some%20bugs%20in%20my%20Color3%20theme.%20I%27m%20thankful%20for%20their%20support%20and%20patience.%20Th&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/finally-green-light/&amp;n=Finally+green+light&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/finally-green-light/&amp;title=Finally+green+light" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/finally-green-light/&amp;title=Finally+green+light" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/finally-green-light/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/finally-green-light/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Theme Color3</title>
		<link>http://themebuilder.nl/theme-color3/</link>
		<comments>http://themebuilder.nl/theme-color3/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 14:46:46 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Color3]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=121</guid>
		<description><![CDATA[Het thema Color3 is in een halve dag tot stand gekomen. Het is een kleurrijk thema met dropdown menu en fixed columns. Uiteraard is het theme ook widget ready. Het thema is ook weer geupload naar WordPress.org maar (nog) niet goedgekeurd. Een link naar de download volgt binnenkort! Share this on Facebook Tweet This! Share [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themebuilder.nl/theme-color3/ " target="_self"><img class="aligncenter size-full wp-image-245" title="tree" src="http://themebuilder.nl/wp-content/uploads/2009/09/tree.jpg" alt="tree" width="540" height="115" /></a></p>
<p>Het thema Color3 is in een halve dag tot stand gekomen. Het is een kleurrijk thema met dropdown menu en fixed columns. Uiteraard is het theme ook widget ready.</p>
<p>Het thema is ook weer geupload naar WordPress.org maar (nog) niet goedgekeurd. Een link naar de download volgt binnenkort!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/theme-color3/&amp;t=Theme+Color3" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Theme+Color3+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/theme-color3/&amp;title=Theme+Color3&amp;summary=%0D%0A%0D%0AHet%20thema%20Color3%20is%20in%20een%20halve%20dag%20tot%20stand%20gekomen.%20Het%20is%20een%20kleurrijk%20thema%20met%20dropdown%20menu%20en%20fixed%20columns.%20Uiteraard%20is%20het%20theme%20ook%20widget%20ready.%0D%0A%0D%0AHet%20thema%20is%20ook%20weer%20geupload%20naar%20Wordpress.org%20maar%20%28nog%29%20niet%20goedgekeurd.%20Een%20link%20naar%20de%20download%20volgt%20binnenkort%21&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/theme-color3/&amp;n=Theme+Color3&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/theme-color3/&amp;title=Theme+Color3" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/theme-color3/&amp;title=Theme+Color3" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/theme-color3/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/theme-color3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Download MMystique WordPress theme</title>
		<link>http://themebuilder.nl/download-mmystique-wordpress-theme/</link>
		<comments>http://themebuilder.nl/download-mmystique-wordpress-theme/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 20:08:20 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Download]]></category>
		<category><![CDATA[mmystique]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=59</guid>
		<description><![CDATA[Theme MMystique is a bright clean and elegant theme with two columns, right sidebar and widget-ready. MMistique WordPress theme is based on the famous Kubrick. The header of the theme is inspired by Moroccan mosaic. Preview You can download the MMystique theme here. Share this on Facebook Tweet This! Share this on LinkedIn Blog this [...]]]></description>
			<content:encoded><![CDATA[<p>Theme MMystique is a bright clean and elegant theme with two columns, right sidebar and widget-ready. MMistique WordPress theme is based on the famous Kubrick. The header of the theme is inspired by Moroccan mosaic.</p>
<p><a href="http://wp-themes.com/mmistique/">Preview</a></p>
<p><a href="http://www.themebuilder.nl/mmistique.1.3.zip">You can download the MMystique theme here.</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/download-mmystique-wordpress-theme/&amp;t=Download+MMystique+Wordpress+theme" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Download+MMystique+Wordpress+theme+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/download-mmystique-wordpress-theme/&amp;title=Download+MMystique+Wordpress+theme&amp;summary=Theme%20MMystique%20is%20a%20bright%20clean%20and%20elegant%20theme%20with%20two%20columns%2C%20right%20sidebar%20and%20widget-ready.%20MMistique%20WordPress%20theme%20is%20based%20on%20the%20famous%20Kubrick.%20The%20header%20of%20the%20theme%20is%20inspired%20by%20Moroccan%20mosaic.%0D%0A%0D%0APreview%0D%0A%0D%0AYou%20can%20download%20the%20MMystique%20theme%20here.&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/download-mmystique-wordpress-theme/&amp;n=Download+MMystique+Wordpress+theme&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/download-mmystique-wordpress-theme/&amp;title=Download+MMystique+Wordpress+theme" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/download-mmystique-wordpress-theme/&amp;title=Download+MMystique+Wordpress+theme" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/download-mmystique-wordpress-theme/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/download-mmystique-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theme MMystique</title>
		<link>http://themebuilder.nl/theme-mmystique/</link>
		<comments>http://themebuilder.nl/theme-mmystique/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 09:42:55 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[mmystique]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=51</guid>
		<description><![CDATA[Het thema MMystique is door WordPress.org goedgekeurd en kan worden gedownload van de Free WordPress Themes directory. Na een halve dag is het thema 25 keer gedownload. Een bescheiden streven lijkt me zo&#8217;n 200-250 in de eerst week. Een directe link naar het thema is:  http://wordpress.org/extend/themes/mmistique. Natuurlijk moedig ik je aan dit thema te downloaden [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-252" title="mmystique" src="http://themebuilder.nl/wp-content/uploads/2009/06/mmystique.jpg" alt="mmystique" width="540" height="115" /></p>
<p>Het thema MMystique is door WordPress.org goedgekeurd en kan worden gedownload van de <a title="Wordpress free themes directory" href="http://wordpress.org/extend/themes/" target="_blank">Free WordPress Themes directory</a>.</p>
<p>Na een halve dag is het thema 25 keer gedownload. Een bescheiden streven lijkt me zo&#8217;n 200-250 in de eerst week. Een directe link naar het thema is:  <a title="Thema MMystique" href="http://wordpress.org/extend/themes/mmistique" target="_blank">http://wordpress.org/extend/themes/mmistique</a>.</p>
<p>Natuurlijk moedig ik je aan dit thema te downloaden en te gebruiken voor je WordPress website/blog!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/theme-mmystique/&amp;t=Theme+MMystique" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Theme+MMystique+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/theme-mmystique/&amp;title=Theme+MMystique&amp;summary=%0D%0A%0D%0AHet%20thema%20MMystique%20is%20door%20Wordpress.org%20goedgekeurd%20en%20kan%20worden%20gedownload%20van%20de%20Free%20WordPress%20Themes%20directory.%0D%0A%0D%0ANa%20een%20halve%20dag%20is%20het%20thema%2025%20keer%20gedownload.%20Een%20bescheiden%20streven%20lijkt%20me%20zo%27n%20200-250%20in%20de%20eerst%20week.%20Een%20directe%20link%20naar%20het%20thema%20is%3A%C2%A0%20http%3A%2F%2Fwordpress.org%2Fex&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/theme-mmystique/&amp;n=Theme+MMystique&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/theme-mmystique/&amp;title=Theme+MMystique" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/theme-mmystique/&amp;title=Theme+MMystique" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/theme-mmystique/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/theme-mmystique/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eerste Thema binnekort klaar</title>
		<link>http://themebuilder.nl/hello-world/</link>
		<comments>http://themebuilder.nl/hello-world/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 13:17:17 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://themebuilder.nl/?p=1</guid>
		<description><![CDATA[Het eerste volledig zelf ontwikkelde WordPress thema is klaar. Het thema draag de naam MMistque. Het thema wordt op dit moment nog uitgebreid getest maar is zeer binnenkort hier te downloaden. Het is een fris modern en strak thema met een oosters tintje. De pagina heeft een vaste breedte met twee kolommen en de menubalk [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-15" title="theme_01" src="http://themebuilder.nl/wp-content/uploads/2009/06/theme_011-150x150.png" alt="theme_01" width="150" height="150" />Het eerste volledig zelf ontwikkelde <a title="Wordpress" href="http://wordpress.org/" target="_blank">WordPress </a>thema is klaar. Het thema draag de naam MMistque. Het thema wordt op dit moment nog uitgebreid getest maar is zeer binnenkort hier te downloaden.</p>
<p>Het is een fris modern en strak thema met een oosters tintje.  De pagina heeft een vaste breedte met twee kolommen en de menubalk aan de rechterkant. Tevens is er horizontaal een dropdown menu in verwerkt. Natuurlijk is het MMistique thema widget ready.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://themebuilder.nl/hello-world/&amp;t=Eerste+Thema+binnekort+klaar" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Eerste+Thema+binnekort+klaar+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://themebuilder.nl/hello-world/&amp;title=Eerste+Thema+binnekort+klaar&amp;summary=Het%20eerste%20volledig%20zelf%20ontwikkelde%20Wordpress%20thema%20is%20klaar.%20Het%20thema%20draag%20de%20naam%20MMistque.%20Het%20thema%20wordt%20op%20dit%20moment%20nog%20uitgebreid%20getest%20maar%20is%20zeer%20binnenkort%20hier%20te%20downloaden.%0D%0A%0D%0AHet%20is%20een%20fris%20modern%20en%20strak%20thema%20met%20een%20oosters%20tintje.%20%20De%20pagina%20heeft%20een%20vaste%20breedte%20met%20twe&amp;source=ThemeBuilder" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://themebuilder.nl/hello-world/&amp;n=Eerste+Thema+binnekort+klaar&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://themebuilder.nl/hello-world/&amp;title=Eerste+Thema+binnekort+klaar" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://themebuilder.nl/hello-world/&amp;title=Eerste+Thema+binnekort+klaar" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://themebuilder.nl/hello-world/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://themebuilder.nl/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

