<?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>D&#039;Arcy Norman dot net &#187; mindfulseeing</title>
	<atom:link href="http://www.darcynorman.net/tag/mindfulseeing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darcynorman.net</link>
	<description>apparently much happier in person</description>
	<lastBuildDate>Fri, 20 Nov 2009 03:52:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>monotone photoblog wordpress theme</title>
		<link>http://www.darcynorman.net/2008/05/06/monotone-photoblog-wordpress-theme/</link>
		<comments>http://www.darcynorman.net/2008/05/06/monotone-photoblog-wordpress-theme/#comments</comments>
		<pubDate>Wed, 07 May 2008 01:51:27 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[mindfulseeing]]></category>
		<category><![CDATA[photoblog]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=1934</guid>
		<description><![CDATA[I just installed the development version of the monotone theme over on my mindfulseeing.com photoblog. What a cool theme. It adapts the colours of the post page based on the colour palette used in the first image on a post. AND, it provides a great archives page with thumbnails from each post. Very cool. This [...]]]></description>
			<content:encoded><![CDATA[<p>I just installed the development version of the monotone theme over on my <a href="http://mindfulseeing.com">mindfulseeing.com</a> photoblog. What a cool theme. It adapts the colours of the post page based on the colour palette used in the first image on a post. AND, it provides a great archives page with thumbnails from each post. Very cool. This is <em>exactly</em> what I&#8217;ve been looking for in a photoblog theme.</p>
<p>Because it&#8217;s not an officially released theme (yet) you have to check it out <a href="http://svn.automattic.com/wpcom-themes/monotone/">via the subversion repository</a>, but that&#8217;s a pretty simple call to <code>svn co http://svn.automattic.com/wpcom-themes/monotone/</code></p>
<p>Here&#8217;s a snapshot of the post page, with background colour pulled automagically from the photograph:</p>
<p style="text-align: center;"><a href="http://www.darcynorman.net/wp-content/uploads/2008/05/monotone_post_page.png"><img class="alignnone size-medium wp-image-1935 aligncenter" title="monotone_post_page" src="http://www.darcynorman.net/wp-content/uploads/2008/05/monotone_post_page.png" alt="" width="559" height="590" /></a></p>
<p>And, the archives page with date selector:</p>
<p style="text-align: center;"><a href="http://www.darcynorman.net/wp-content/uploads/2008/05/monotone_archives_page.png"><img class="alignnone size-medium wp-image-1936 aligncenter" title="monotone_archives_page" src="http://www.darcynorman.net/wp-content/uploads/2008/05/monotone_archives_page-600x399.png" alt="" width="600" height="399" /></a></p>
<p style="text-align: center;"> </p>
<p style="text-align: left;">Thanks to <a href="http://weblogtoolscollection.com/archives/2008/05/06/a-unique-monotone/">Weblog Tools Collection for the tip</a>, and <a href="http://automattic.com">Automattic</a> for creating the <a href="http://monotonedemo.wordpress.com/">theme</a>!</p>
<p><strong>Update:</strong> The monotone theme uses a function called <code>image_scrape()</code> which does some cool stuff for the post display on the web, but had the nasty side effect of yanking images from the RSS feed. I fixed my copy of <code>functions.php</code> to avoid the problem, and allow full images in the feed. Here is my trivial modification to the <code>image_scrape()</code> function:</p>
<pre><code>// remove image tag from post_content for display
function image_scrape($entry) {
	// don't scrape the image for the feed
	if (is_feed()) { return $entry; }
	//remove image tag
	$entry = preg_replace('/&lt;img [^/&gt;]*src=(\"|\').+?(\1)[^&gt;]*\/*&gt;/','', $entry); /* */
	//remove any empty tags left by the scrape.
	$entry = str_replace('&lt;p&gt; &lt;/p&gt;', '', $entry);
	$entry = preg_replace( '|&lt; ([a-z]+)[^&gt;]*&gt;\s*|i', '', $entry );
	$entry = preg_replace( '|&lt; ([a-z]+)[^&gt;]*&gt;\s*|i', '', $entry );
	$entry = preg_replace( '|&lt; ([a-z]+)[^&gt;]*&gt;\s*|i', '', $entry );
	return $entry;
}</code></pre>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=1934" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/05/06/monotone-photoblog-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>
