<?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>Een onsje meer &#187; thesis</title>
	<atom:link href="http://blog.jongbelegen.net/tag/thesis/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jongbelegen.net</link>
	<description>Jongbelegen.net bedrijfsweblog. Nieuws, informatie, inzichten</description>
	<lastBuildDate>Thu, 11 Mar 2010 14:41:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Thesis Affiliate</title>
		<link>http://blog.jongbelegen.net/thesis-affiliate/</link>
		<comments>http://blog.jongbelegen.net/thesis-affiliate/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 21:08:31 +0000</pubDate>
		<dc:creator>jules</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[affiliate]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.jongbelegen.net/?p=219</guid>
		<description><![CDATA[Bekendmaking van mijn Thesis Affiliate link.]]></description>
			<content:encoded><![CDATA[<p></p><p>Websites bouw ik het liefste in WordPress met het <a title="Thesis affiliate link" href="http://www.shareasale.com/r.cfm?B=198392&amp;U=403407&amp;M=24570">Thesis</a> thema.</p>
<p>Thesis is niet gratis, je moet het kopen. Ik vind het het geld waard. Niet alleen ziet het er goed uit en kan je het heel makkelijk kneden zonder te programmeren: je kan het heel makkelijk wijzigen en daarna upgraden zonder problemen.</p>
<p>Omdat ik zo enthousiast ben, en omdat het ook nog wat betaalt, ben ik vanaf nu Thesis affiliate.<br />
Dus: wil je Thesis kopen, en mij financieel een klein beetje beter maken: <a href="http://www.shareasale.com/r.cfm?B=198392&amp;U=403407&amp;M=24570">koop Thesis via deze link: mijn affiliate link</a>.</p>
<p>Als <strong>bonus</strong> (voor iedereen): wie een <a href="http://blog.jongbelegen.net/wordpress-themas-vertalen/">NL vertaling</a> wil voor Thesis kan ook bij mij terecht. Neem even <a title="contact formulier" href="http://blog.jongbelegen.net/contact/">contact</a> op en ik stuur je de files.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jongbelegen.net/thesis-affiliate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add the uberVU reaction counter to posts using WordPress &#8211; Thesis</title>
		<link>http://blog.jongbelegen.net/howto-add-ubervu-counter-wordpress/</link>
		<comments>http://blog.jongbelegen.net/howto-add-ubervu-counter-wordpress/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 20:55:29 +0000</pubDate>
		<dc:creator>jules</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[ubervu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.jongbelegen.net/?p=197</guid>
		<description><![CDATA[Adding the uberVU reaction counter to a webpage is simple. Nevertheless, I ran into some issues, which I overcame and would like to share: 
I use WordPress with the Thesis theme and made a routine in custom_functions.php to do the trick. The code (below) does the following:

Strip extra URL parameters
Only display on single posts (not [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Adding the <a href="http://blog.ubervu.com/post/286130407/integrate-the-ubervu-badge-on-your-website">uberVU reaction counter to a webpage</a> is simple. Nevertheless, I ran into some issues, which I overcame and would like to share: </p>
<p>I use WordPress with the Thesis theme and made a routine in <em>custom_functions.php</em> to do the trick. The code (below) does the following:</p>
<ul>
<li>Strip extra URL parameters</li>
<li>Only display on single posts (not on pages)</li>
<li>Insert the badge after the pot headline using the appropriate Thesis hook</li>
</ul>
<p>Here&#8217;s the code I used to insert the counter next to the post:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> jbl_ubervu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>  
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    &lt;div class=&quot;ubervu_button&quot; style=&quot;float: right; margin-left: 5px; margin-right:5px;&quot;&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
      var ubervu_url = &quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;;
      var ubervu_style = &quot;compact&quot;;
    &lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;http://badge.ubervu.com/badge.1.0.js&quot;&gt;&lt;/script&gt;
    &lt;/div&gt;
  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> 
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'thesis_hook_after_headline'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'jbl_ubervu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>The reason for using the permalink is to strip extra url variables, like Google Analtytics campaign parameters. The uberVU script can never know which parameters to ignore, so you might end up with different counters.</p>
<p class="note">Hack away, cut-and-paste, and leave a comment if it works for you or not.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jongbelegen.net/howto-add-ubervu-counter-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duurzaam Boer Blijven is live!</title>
		<link>http://blog.jongbelegen.net/duurzaam-boer-blijven-live/</link>
		<comments>http://blog.jongbelegen.net/duurzaam-boer-blijven-live/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 21:57:35 +0000</pubDate>
		<dc:creator>jules</dc:creator>
				<category><![CDATA[Bedrijfsinformatie]]></category>
		<category><![CDATA[jongbelegen.net]]></category>
		<category><![CDATA[klanten]]></category>
		<category><![CDATA[projecten]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.jongbelegen.net/?p=144</guid>
		<description><![CDATA[Jongbelegen.net heeft de site van "Duurzaam Boer Blijven" gebouwd. In dit artikel wat meer informatie en uiteraard een link.]]></description>
			<content:encoded><![CDATA[<p></p><p>Altijd mooi om je werk aan de wereld te kunnen laten zien: Na een periode van hard werken in stilte is er weer een nieuwe site live gegaan met het &#8220;<em>gemaakt door Jongbelegen.net</em>&#8221; stempeltje erop.</p>
<p>Met trots presenteer ik de nieuwe site van <a title="Duurzaam boer blijven" href="http://www.duurzaamboerblijven.nl/">Duurzaam Boer Blijven</a>! Op dit uitgebreide weblog wordt een verzameling regionale projecten bijelkaar gebracht op een plek.</p>
<p style="text-align: center;"><a href="http://www.duurzaamboerblijven.nl/"><img class="aligncenter size-full wp-image-147" style="border: 8px solid black; margin-top: 4px; margin-bottom: 4px;" title="duurzaam2" src="http://blog.jongbelegen.net/wp-content/uploads/2009/03/duurzaam2.png" alt="duurzaam2" width="461" height="120" /></a></p>
<p>Wat bijzonderheden aan deze site: de opmaak en grote delen van de inhoud variëren afhankelijk van de actieve deelsite. Verder heb ik veel gebruik gemaakt van het <em>hook</em> systeem van het gebruikte Wordpress thema <a href="http://diythemes.com/thesis/">Thesis</a>, en heb ik het thema uiteraard vertaald naar het Nederlands.</p>
<p>Niet alleen heb ik de site gebouwd, maar heb ik ook de bloggers getraind om de site zo goed en mooi mogelijk te vullen. Ik zou zeggen: neem een kijkje! <strong>Feedback </strong>in de vorm van een reactie op deze post is uiteraard welkom.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jongbelegen.net/duurzaam-boer-blijven-live/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nieuwe Look</title>
		<link>http://blog.jongbelegen.net/nieuwe-look/</link>
		<comments>http://blog.jongbelegen.net/nieuwe-look/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 12:15:55 +0000</pubDate>
		<dc:creator>jules</dc:creator>
				<category><![CDATA[Algemeen]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[nieuw]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.jongbelegen.net/?p=97</guid>
		<description><![CDATA[De mededeling dat mijn site een nieuwe look heeft]]></description>
			<content:encoded><![CDATA[<p></p><p>Het is er toch eindelijk van gekomen: mijn website heb ik een nieuwe look gegeven. Ik heb hierbij gebruik gemaakt van het <a href="http://diythemes.com/thesis/">Thesis wordpress thema</a>.</p>
<p>De banner is van &#8220;visualpanic&#8221;, gevonden <a href="http://www.flickr.com/photos/visualpanic/2422742902/">via Flickr</a>.</p>
<p>Vind je het mooi?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jongbelegen.net/nieuwe-look/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
