<?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"
	>

<channel>
	<title>Copyblogger Theme</title>
	<atom:link href="http://www.pearsonified.com/theme/copyblogger/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pearsonified.com/theme/copyblogger</link>
	<description>A Flexible WordPress Theme that You Can Customize</description>
	<pubDate>Thu, 05 Jul 2007 20:32:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>How to Add Navigation Links to Your Header</title>
		<link>http://www.pearsonified.com/theme/copyblogger/header-navigation-links/</link>
		<comments>http://www.pearsonified.com/theme/copyblogger/header-navigation-links/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 20:30:29 +0000</pubDate>
		<dc:creator>Chris P.</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.pearsonified.com/theme/copyblogger/header-navigation-links/</guid>
		<description><![CDATA[As you add content to your site, you&#8217;ll no doubt want to edit the navigation links that appear at the top of each page. Fortunately, this is extremely easy to do with the Copyblogger Theme, and with the help of this tutorial, you&#8217;ll be able to get the job done in less time than it&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>As you add content to your site, you&#8217;ll no doubt want to edit the navigation links that appear at the top of each page. Fortunately, this is extremely easy to do with the Copyblogger Theme, and with the help of this tutorial, you&#8217;ll be able to get the job done in less time than it&#8217;ll take you to brew that next pot of coffee.</p>
<p><span id="more-8"></span>You need two things in order to get started:</p>
<ol>
<li><acronym title="File Transfer Protocol">FTP</acronym> client</li>
<li>text/code editor</li>
</ol>
<p>Since you needed an <acronym title="File Transfer Protocol">FTP</acronym> client to upload this theme to your server, I&#8217;m betting you have #1 covered. Also, since 97% of you are running either Windows or <acronym title="Oh Ess Ten">OS X</acronym>, you&#8217;ve likely got a default text editor you can use to satisfy #2 (Notepad or TextEdit).</p>
<p>Oh, and this tutorial assumes that you&#8217;ve already implemented smarter permalinks. If you&#8217;re not sure what that is or how to do it, I highly recommend checking out <a href="http://tubetorial.com/blog-permalinks-word">this video</a> for more info on the topic. But hey, even if you haven&#8217;t changed your permalink structure or are unable to do so, I&#8217;ll still show you how to add navigation links to your header (cause that&#8217;s how I roll).</p>
<h3>Navigation Menu Example Tutorial</h3>
<p><img class="right" src="http://pearsonified.com/theme/copyblogger/images/page-slug.gif" width="188" height="80" alt="Page Slug field in WordPress" title="Enter your desired page slug in the box" />For the purposes of this example, let&#8217;s say that we&#8217;ve created a contact page by visiting <strong>Write</strong> &rarr; <strong>Page</strong> in our WordPress Dashboard. We&#8217;ve also made sure to write <code>contact</code> in the <strong>Page Slug</strong> box on the right, as this will determine the final <acronym title="Universal Resource Locator">URL</acronym> for our newly-created page.</p>
<p>Once you&#8217;ve created your page, it&#8217;s time to fire up that text editor and open the <code>nav_menu.php</code> file that is included with the Copyblogger Theme. The file contains only three lines of code, and you&#8217;ll want to pay special attention to line #3, which will serve as a &#8220;template&#8221; for adding your new link. If you haven&#8217;t edited anything, line #3 should look like this:</p>
<ol class="code">
<li><code>&lt;li&gt;&lt;a <span class="code_blue">&lt;?php if (is_page(&#8217;<span class="code_orange">about</span>&#8216;)) echo(&#8217;class=&quot;current&quot; &#8216;); ?&gt;</span>href=&quot;<span class="code_blue">&lt;?php bloginfo(&#8217;url&#8217;); ?&gt;</span>/<span class="code_orange">about</span>/&quot;&gt;<span class="code_orange">about</span>&lt;/a&gt;&lt;/li&gt;</code></li>
</ol>
<p>In order to add your new <strong>contact</strong> page link, you&#8217;ll need to copy and paste line #3 on a new line. Now, replace all references to the word &#8220;about&#8221; (shown in <span class="code_orange">orange</span> above) with the <strong>Page Slug</strong> you created earlier. In this example, our <strong>Page Slug</strong> is <code>contact</code>, so our new navigation menu link code should look like this:</p>
<ol class="code">
<li><code>&lt;li&gt;&lt;a <span class="code_blue">&lt;?php if (is_page(&#8217;<span class="code_orange">contact</span>&#8216;)) echo(&#8217;class=&quot;current&quot; &#8216;); ?&gt;</span>href=&quot;<span class="code_blue">&lt;?php bloginfo(&#8217;url&#8217;); ?&gt;</span>/<span class="code_orange">contact</span>/&quot;&gt;<span class="code_orange">contact</span>&lt;/a&gt;&lt;/li&gt;</code></li>
</ol>
<p>Now, all you have to do is <strong>save</strong> the <code>nav_menu.php</code> file and upload it to the Copyblogger Theme directory on your server. Voila, your navigation menu is updated!</p>
<p>Oh, and your coffee is ready <img src='http://www.pearsonified.com/theme/copyblogger/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>I use the default permalink structure&#8230; can you help?</h3>
<p><img class="right" src="http://pearsonified.com/theme/copyblogger/images/page-id.gif" width="220" height="178" alt="WordPress Page ID" title="You need to know the unique ID of the page you created" />If you&#8217;re using the default permalink structure, then you&#8217;ll create a page just as shown in the example above, except this time, once your page is created, you&#8217;ll need to visit <strong>Manage</strong> &rarr; <strong>Pages</strong> and locate the unique <code>ID</code> of the page you wish to link. Now, after copying and pasting line #3, you&#8217;ll need to replace the second reference to the <strong>Page Slug</strong> with a reference to the unique <code>ID</code>. For the example scenario posed above, the proper code should look like this:</p>
<ol class="code">
<li><code>&lt;li&gt;&lt;a <span class="code_blue">&lt;?php if (is_page(&#8217;<span class="code_orange">contact</span>&#8216;)) echo(&#8217;class=&quot;current&quot; &#8216;); ?&gt;</span>href=&quot;<span class="code_blue">&lt;?php bloginfo(&#8217;url&#8217;); ?&gt;</span>/<span class="code_orange">?page_id=8</span>/&quot;&gt;<span class="code_orange">contact</span>&lt;/a&gt;&lt;/li&gt;</code></li>
</ol>
<p>Note that there is only one change to the code—the destination of the link has become <code>?page_id=8</code> instead of <code>contact</code>. Pretty simple, huh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pearsonified.com/theme/copyblogger/header-navigation-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Subscribe to Comments Plugin Updated for WordPress 2.2+</title>
		<link>http://www.pearsonified.com/theme/copyblogger/subscribe-to-comments/</link>
		<comments>http://www.pearsonified.com/theme/copyblogger/subscribe-to-comments/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 17:18:20 +0000</pubDate>
		<dc:creator>Chris P.</dc:creator>
		
		<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://www.pearsonified.com/theme/copyblogger/subscribe-to-comments/</guid>
		<description><![CDATA[WordPress ninja Mark Jacquith has updated his excellent Subscribe to Comments Plugin to work with WordPress 2.2 and higher. Pick up version 2.1.1 of the plugin as soon as possible—both you and your readers will be glad you did.
]]></description>
			<content:encoded><![CDATA[<p>WordPress ninja Mark Jacquith has updated his excellent <a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe to Comments Plugin</a> to work with WordPress 2.2 and higher. Pick up version 2.1.1 of the plugin as soon as possible—both you <em>and</em> your readers will be glad you did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pearsonified.com/theme/copyblogger/subscribe-to-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Subscribe to Copyblogger Theme Comments</title>
		<link>http://www.pearsonified.com/theme/copyblogger/subscribe-to-copyblogger-theme-comments/</link>
		<comments>http://www.pearsonified.com/theme/copyblogger/subscribe-to-copyblogger-theme-comments/#comments</comments>
		<pubDate>Fri, 25 May 2007 04:56:52 +0000</pubDate>
		<dc:creator>Chris P.</dc:creator>
		
		<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://www.pearsonified.com/theme/copyblogger/subscribe-to-copyblogger-theme-comments/</guid>
		<description><![CDATA[One thing I have forgotten to mention thus far is the fact that the Copyblogger Theme supports the amazing Subscribe to Comments plugin from Mark Jaquith. If you want to use it on your own site (and I highly recommend that you do), all you have to do is activate the plugin—it&#8217;s literally plug and [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I have forgotten to mention thus far is the fact that the Copyblogger Theme supports the amazing <a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe to Comments plugin</a> from Mark Jaquith. If you want to use it on your own site (and I highly recommend that you do), all you have to do is activate the plugin—it&#8217;s literally plug and play with this theme.</p>
<p>I&#8217;ve also activated the plugin on this site, and this means that instead of being forced to check back here every fifteen minutes to see if I&#8217;ve responded, you&#8217;ll simply receive an email whenever new comments are posted on those posts to which you&#8217;ve subscribed.</p>
<p>Oh, and while you&#8217;re at it, go ahead and <a href="http://www.pearsonified.com/theme/copyblogger/feed/">subscribe to the main feed</a>, too. I&#8217;ll be cranking out articles over the next couple of weeks that detail everything you need to know about working with the theme, and you&#8217;ll definitely want to stay up to date!</p>
<p><strong>Update:</strong> The Subscribe to Comments plugin is not yet fully compatible with WordPress 2.2, which is currently running this site. If you&#8217;re still running WordPress 2.1.x, then the plugin will work for you, and it&#8217;s still plug and play with this theme.</p>
<p>I&#8217;ll give everyone the heads-up when a new version of the plugin is released.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pearsonified.com/theme/copyblogger/subscribe-to-copyblogger-theme-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Format Your Images with Copyblogger</title>
		<link>http://www.pearsonified.com/theme/copyblogger/copyblogger-image-formatting/</link>
		<comments>http://www.pearsonified.com/theme/copyblogger/copyblogger-image-formatting/#comments</comments>
		<pubDate>Fri, 25 May 2007 03:59:17 +0000</pubDate>
		<dc:creator>Chris P.</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.pearsonified.com/theme/copyblogger/copyblogger-image-formatting/</guid>
		<description><![CDATA[
If you want your blog posts to appear as polished as possible, then proper image styling is a must. Gone are the days of align=&#34;left&#34; and align=&#34;right&#34;—the best way to style your images is through the use of CSS classes, and the Copyblogger theme comes with a robust set of image styling options that will [...]]]></description>
			<content:encoded><![CDATA[<p><img class="center" src="http://pearsonified.com/theme/copyblogger/images/ace-1.jpg" width="468" height="230" alt="Ace as a puppy" title="Ace is one of my Jack Russell pups" /></p>
<p>If you want your blog posts to appear as polished as possible, then proper image styling is a must. Gone are the days of <code>align=&quot;left&quot;</code> and <code>align=&quot;right&quot;</code>—the best way to style your images is through the use of <acronym title="Cascading Style Sheet">CSS</acronym> classes, and the Copyblogger theme comes with a robust set of image styling options that will have you looking like a formatting pro in no time.</p>
<p>The only roadblock that stands in between you and these styles is the WordPress posting interface itself. You can&#8217;t apply <acronym title="Cascading Style Sheet">CSS</acronym> classes to image declarations from within the visual text editor, so you&#8217;ll have to switch to the code editor in order to make it happen. Don&#8217;t worry, though—it&#8217;s a straightforward process, and I&#8217;m going to walk you through it right now.</p>
<p><span id="more-4"></span><strong>Note:</strong> this assumes you are running WordPress 2.1 or higher. If you&#8217;re not, then now is an excellent time to upgrade!</p>
<h3>Image Formatting Examples</h3>
<p>In our first example scenario, we want to align an image to the left, and we&#8217;d also like to have our paragraph text wrap around the image so as to maintain a clean, uninterrupted flow. You&#8217;ll start by inserting an image into your post just as you normally would, but in order to apply the proper <acronym title="Cascading Style Sheet">CSS</acronym> class, you&#8217;ll need to switch over to code view by clicking on the &#8220;Code&#8221; tab. A quick explanation of that process along with a visual can be found <a href="http://www.pearsonified.com/theme/copyblogger/using-copyblogger-theme-styles/#text_editor">here</a>.</p>
<p>Once you&#8217;re in the code view, the first thing you need to do is locate the <code>img</code> tag for the image that you want to change. You should find something that looks like this:</p>
<ol class="code">
<li><code>&lt;img src=&quot;http://path/to/your/image&quot; /&gt;</code></li>
</ol>
<p>To apply the proper image styling class, all you have to do is add the code shown in <span class="blue">blue</a>:</p>
<ol class="code">
<li><code>&lt;img <span class="blue">class=&quot;left&quot;</span> src=&quot;http://path/to/your/image&quot; /&gt;</code></li>
</ol>
<p><img class="left" src="http://pearsonified.com/theme/copyblogger/images/biggie-1.jpg" width="209" height="218" alt="Biggie as a puppy" title="Biggie, one of my Jack Russell pups" />If you&#8217;ve done everything correctly, you should end up with an image that looks like the one shown here. Notice how it is not only aligned to the left, but it is also padded away from the text to produce a clean word wrap. This is a nice result, but for many images, it&#8217;s more desirable to &#8220;frame&#8221; them in some way so as to separate them from the content and just to make them look nicer in general. Fortunately, this is extremely easy to do with the built-in image styles of the Copyblogger theme.</p>
<p>With that in mind, in our second example, we&#8217;re going to align an image to the right and put a frame around it so that it will really stand out and look professional on our page. We&#8217;ll do the same thing that we did for the first image, but this time, we&#8217;re going to use the <code>right</code> class. Oh, and in order to add a frame, we just need to add one more class declaration – <code>frame</code> – and we&#8217;ll get the result that we&#8217;re after (again, you add the code in <span class="blue">blue</span>).</p>
<ol class="code">
<li><code>&lt;img <span class="blue">class=&quot;right frame&quot;</span> src=&quot;http://image/path/&quot; /&gt;</code></li>
</ol>
<p><img class="right frame" src="http://pearsonified.com/theme/copyblogger/images/ace-2.jpg" width="221" height="208" alt="Ace the sleeping puppy" title="Ace, one of my pups, at about 22 days old" />If you&#8217;ve done everything correctly, you&#8217;ll end up with an image that is styled just like the one you see here. The frame is 5px wide on each side, so if you&#8217;re going to use frames, you&#8217;ll need to keep the extra width in mind. For the record, the posting area is 468 pixels wide, so if you want consistent behavior across a variety of different browsers, you should always ensure that your pictures are no more than 468 pixels wide. If you intend to place a frame around an image, just make sure that it&#8217;s no more than 458 pixels wide, as the frame will add an additional 10px to the width.</p>
<h3 id="image_classes">Available Image Styling Classes</h3>
<p>Here is the quick list of image handling classes available in the Copyblogger theme:</p>
<ul>
<li><code>left</code> — aligns an image to the left, wraps text around it</li>
<li><code>right</code> — aligns an image to the right, wraps text around it</li>
<li><code>center</code> — centers an image, does not wrap text</li>
<li><code>frame</code> — adds a frame, should be used in conjunction with one of the above classes</li>
<li><code>stack</code> — should be used with the <code>left</code> or <code>right</code> class, allows you to stack images side by side if need be</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pearsonified.com/theme/copyblogger/copyblogger-image-formatting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Use the Copyblogger Theme Like a Pro</title>
		<link>http://www.pearsonified.com/theme/copyblogger/using-copyblogger-theme-styles/</link>
		<comments>http://www.pearsonified.com/theme/copyblogger/using-copyblogger-theme-styles/#comments</comments>
		<pubDate>Mon, 21 May 2007 15:01:42 +0000</pubDate>
		<dc:creator>Chris P.</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.pearsonified.com/theme/copyblogger/?p=3</guid>
		<description><![CDATA[The only thing better than a great WordPress theme is actually knowing how to max out the numerous features and styling benefits that it offers. In lieu of that earth-shattering revelation, I&#8217;d like to take you on a guided tour so you&#8217;ll be equipped with the knowledge you need to make the most of the [...]]]></description>
			<content:encoded><![CDATA[<p>The only thing better than a great WordPress theme is actually knowing how to max out the numerous features and styling benefits that it offers. In lieu of that earth-shattering revelation, I&#8217;d like to take you on a guided tour so you&#8217;ll be equipped with the knowledge you need to make the most of the Copyblogger Theme for WordPress.</p>
<h3 id="about_the_design">First, a Word on the Layout</h3>
<p><a href="http://pearsonified.com/theme/copyblogger/images/theme-with-grid.gif"><img class="right frame" src="http://pearsonified.com/theme/copyblogger/images/theme-with-grid-t.gif" width="214" height="208" alt="Typographic grid thumbnail" title="Click to see the layout with the grid turned on" /></a>The layout you see today is <em>not</em> the original Copyblogger design—it&#8217;s one that&#8217;s been &#8220;digitally remastered&#8221; to achieve a quality standard that I feel is unsurpassed in the world of open-source theme development. I used relative (or em-based) sizing on nearly every element of the theme, making it an infinitely scalable layout that can accommodate visually-impaired users with ease. If you&#8217;re using FireFox, resize the text with <code>ctrl</code> + <code>+</code> to see how this works.</p>
<p>Also, I took extreme care to develop the theme so that it adheres quite strictly to a typographic grid. Click on the thumbnail above to get an idea what I mean, or read about <a href="http://www.alistapart.com/articles/settingtypeontheweb">setting type on the Web</a> if you&#8217;re into that sort of thing. <span id="more-3"></span></p>
<h3 id="widget_support">Widget Support</h3>
<p>With the news that <a href="http://wordpress.org/development/2007/05/wordpress-22/">WordPress 2.2</a> comes pre-packaged with the sidebar widget plugin, widgets have officially become a crucial part of the WordPress fabric. As a result, the Copyblogger Theme for WordPress supports widgets, but with one notable exception.</p>
<p>For some reason, the WordPress developers broke the <acronym title="eXtensible HyperText Markup Language">XHTML</acronym> markup convention on the search widget, and in addition, their solution is not as flexible as I would like. Because of this, I felt it was necessary to build a custom search widget that lay outside of the normal widget framework. As a result, I highly recommend that you <strong>do not use the search widget</strong>, and instead just let my built-in search function rock your sidebar.</p>
<h3 id="post_styles">Special Post Styling Elements</h3>
<p>The Copyblogger Theme for WordPress features elegant treatments for traditional in-post styling elements like:</p>
<ul>
<li>Unordered lists: <code>&lt;ul&gt;</code> &rarr; <code>&lt;li&gt;</code>, like the one you&#8217;re reading now</li>
<li>Ordered lists: <code>&lt;ol&gt;</code> &rarr; <code>&lt;li&gt;</code></li>
<li>Definition lists: <code>&lt;dl&gt;</code> &rarr; <code>&lt;dt&gt;</code> &rarr; <code>&lt;dd&gt;</code></li>
<li>Sub-headlines: <code>&lt;h3&gt;</code></li>
<li>Blockquotes: <code>&lt;blockquote&gt;</code>
<ul>
<li>Pullquotes (more on this in a sec)</li>
</ul>
</li>
<li>Code: <code>&lt;code&gt;</code></li>
</ul>
<p>While most of the above elements are pretty standard, one – the pullquote – requires further explanation in order to be used effectively.</p>
<h3 id="pullquotes">Pullquotes</h3>
<p>I&#8217;m sure you&#8217;ve heard of blockquotes, the pragmatic cousins of the more artsy, more eccentric pullquotes. In case you need a refresher, here&#8217;s what a standard blockquote looks like:</p>
<blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque pharetra velit vel purus. Nunc tempor, urna sit amet euismod elementum, erat tellus auctor erat, non condimentum dui wisi non orci. Nam fringilla leo sed dui. Vestibulum ac elit sit amet diam vehicula scelerisque.</p></blockquote>
<p>All you have to do to achieve a result like the one above is wrap your quoted text inside <code>&lt;blockquote&gt;</code> tags, and the Copyblogger Theme for WordPress will tidy it up for you.</p>
<blockquote class="right"><p>It&#8217;s kinda like a block quote, with a twist.</p></blockquote>
<p>Pullquotes, however, are not quite as simple because there is no pre-defined <acronym title="eXtensible HyperText Markup Language">XHTML</acronym> tag for a pullquote. What I&#8217;ve done, then, is prepare two classes – &#8220;left&#8221; and &#8220;right&#8221; – that you can apply to any regular blockquote to transform it into a bit of publishing goodness like you see here.</p>
<p>For a pullquote aligned to the right (like the one above), your encompassing blockquote declaration should be <code>&lt;blockquote class=&quot;right&quot;&gt;</code>. For a pullquote aligned to the left, you&#8217;d simply write <code>&lt;blockquote class=&quot;left&quot;&gt;</code>.</p>
<p>I&#8217;d like to point out that certain feed readers may not be able to interpret pullquotes effectively, and this could result in repeated text or strange punctuation, both of which could confuse your readers. For what it&#8217;s worth, Bloglines does a nice job of floating the quotes to the left or to the right, and although they&#8217;re not styled, per-se, it&#8217;s evident that the pullquotes are not part of the body text of the associated paragraph.</p>
<h3 id="text_editor">Using These Styles</h3>
<p>With each new release of WordPress, the visual text editor (which is your default posting interface) becomes more and more useful in terms of how it utilizes the styles and text treatments that I&#8217;ve introduced to you here. In spite of that, you cannot make use of <em>all</em> of these elements from the visual editor&#8217;s interface. Specifically, you won&#8217;t be able to create the following:</p>
<ul>
<li>Definition lists</li>
<li>Sub-headlines</li>
<li>Pullquotes</li>
</ul>
<p><img class="right frame" src="http://pearsonified.com/theme/copyblogger/images/visual-to-code.gif" width="214" height="190" alt="WordPress editor tab controls" title="Handy tabs let you switch between the visual and code editors" />Fortunately, WordPress 2.1+ comes with a handy little tab switcher that allows you to jump between <strong>visual</strong> and <strong>code</strong> editing modes. Whenever you want to include one of the special elements from the list above, simply switch over to the code view, apply the appropriate tags to your text (remember to close them!), and then switch back to visual mode to write just as you normally would.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pearsonified.com/theme/copyblogger/using-copyblogger-theme-styles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to the Copyblogger Theme for WordPress</title>
		<link>http://www.pearsonified.com/theme/copyblogger/welcome-to-the-copyblogger-theme/</link>
		<comments>http://www.pearsonified.com/theme/copyblogger/welcome-to-the-copyblogger-theme/#comments</comments>
		<pubDate>Sun, 20 May 2007 17:59:56 +0000</pubDate>
		<dc:creator>Chris P.</dc:creator>
		
		<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[You&#8217;ve come to the right place! How do I know? Because this is one place on the Web where you truly can leave with more than you arrived with, and best of all, it won&#8217;t cost you a dime!
The Copyblogger Theme for WordPress is the second fully-developed theme from Chris Pearson, the same guy who [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve come to the right place! How do I know? Because this is one place on the Web where you truly can leave with more than you arrived with, and best of all, it won&#8217;t cost you a dime!</p>
<p>The Copyblogger Theme for WordPress is the second fully-developed theme from <a href="http://pearsonified.com">Chris Pearson</a>, the same guy who developed (and later sold) the <a href="http://cutline.tubetorial.com">Cutline Theme for WordPress</a>.</p>
<p>Chris likes great <acronym title="Search Engine Optimization">SEO</acronym>, squeaky-clean <acronym title="eXtensible HyperText Markup Language">XHTML</acronym>, accessible layouts that look identical across all modern browsers, ubiquitous design solutions, and talking about himself in the third person.</p>
<p>Seriously, though, I think the Copyblogger Theme for WordPress encompasses all those key points, and I believe it can help you become a better publisher.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pearsonified.com/theme/copyblogger/welcome-to-the-copyblogger-theme/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
