<?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>acketon.com&#187; Blog</title>
	<atom:link href="http://www.acketon.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acketon.com</link>
	<description></description>
	<lastBuildDate>Tue, 25 May 2010 06:43:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New Site: DakotaChichester.com</title>
		<link>http://www.acketon.com/blog/new-site-dakotachichester-com/</link>
		<comments>http://www.acketon.com/blog/new-site-dakotachichester-com/#comments</comments>
		<pubDate>Tue, 25 May 2010 06:42:54 +0000</pubDate>
		<dc:creator>Dakota</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.acketon.com/?p=408</guid>
		<description><![CDATA[I&#8217;ve put together a new site for myself http://www.dakotachichester.com that showcases work that I&#8217;ve done from a variety of clients, including work for my full-time employer. 
I will also be moving my blog over to there soon and hope to actually start posting. 
why can&#8217;t we have a 28 hour day? That would be nice. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put together a new site for myself <a href="http://www.dakotachichester.com">http://www.dakotachichester.com</a> that showcases work that I&#8217;ve done from a variety of clients, including work for my full-time employer. </p>
<p>I will also be moving my blog over to there soon and hope to actually start posting. </p>
<p>why can&#8217;t we have a 28 hour day? That would be nice. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.acketon.com/blog/new-site-dakotachichester-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal 6 Node content type templates guide</title>
		<link>http://www.acketon.com/blog/drupal-6-node-content-type-templates-guide/</link>
		<comments>http://www.acketon.com/blog/drupal-6-node-content-type-templates-guide/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 21:45:42 +0000</pubDate>
		<dc:creator>Dakota</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.acketon.com/?p=342</guid>
		<description><![CDATA[I've been building custom content types with the CCK module and needed to create a custom node template file.

It's pretty easy, but I had a hard time finding tutorials so hopefully this will help someone get started.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been building custom content types with the CCK module and needed to create a custom node template file.</p>
<p>It&#8217;s pretty easy, but I had a hard time finding tutorials so hopefully this will help someone get started:</p>
<p>1) Take your node.tpl.php file and save it as node-your_content_type_name.tpl.php. If you don&#8217;t have a node.tpl.php file you need to create one and place it in your theme directory or Drupal won&#8217;t detect the content type specific template. What I did was copy the node template from the Garland theme and then thin it down some.</p>
<p>2) You need to empty your site Cache, go to Site Config &#8211;&gt; Performance and dump the cache, then visit the Site Building -&gt; Themes page to get Drupal to read your theme files. This makes sure that it knows the new template files are there. I&#8217;ve had kind of a mixed bag with this, sometimes I&#8217;ve had to do it, sometimes not, but if you node template isn&#8217;t being applied, give this a try.</p>
<p>3) Now, we need to figure out what fields to call and how to call them into your node template. You&#8217;re also probably going to want to wrap them in some div columns or whatever you need to setup the layout the way you want.</p>
<p>to print all of your fields you can use this code:</p>
<p>print all nodes:</p>
<pre class="brush: php;"> &lt;pre style=&quot;background:#eee;border:1px solid black;clear:both;&quot;&gt;
&lt;?php print_r($node) ?&gt;&lt;/pre&gt;</pre>
<p>Then you can call any of the pieces of the array for each field, like this:</p>
<pre class="brush: php;">&lt;?php print $node-&gt;field_thename[0]['view'] ?&gt; </pre>
<ul>
<li>Print tells it to print what follows</li>
<li>then we call the cck field that we want</li>
<li>the [0] specifies the item in the array, if you have multiple entries, such as images all attached to the same imagefield you could call the 2nd with [1] or the third with [2] and so on.</li>
<li>the last piece I believe is called the field particle&#8230; &#8220;view&#8221; seems to work for me to render the content like it should be. Pretty much like how it puts the content in just a normal template. Some other &#8220;particles&#8221; to try are: ['safe'] ['value']</li>
</ul>
<p>But you can also call other &#8220;particles&#8221; of data that is in the array. Look below at how I build an image tag for example by calling each piece.</p>
<p>call path to image and build img tag:</p>
<pre class="brush: php;">   &lt;img src=&quot;&lt;?php print base_path() . $field_banner[0]['filepath']; ?&gt;&quot;
              width=&quot;&lt;?php print $field_banner[0]['data']['width']; ?&gt;&quot;
              height=&quot;&lt;?php print $field_banner[0]['data']['height']; ?&gt;&quot;
              alt=&quot;&lt;?php print $field_banner[0]['data']['alt']; ?&gt;&quot; </pre>
<p>I hope this helps someone building a Drupal theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acketon.com/blog/drupal-6-node-content-type-templates-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shoemaker&#8217;s shoes&#8230; or in my case, web design for myself</title>
		<link>http://www.acketon.com/blog/shoemakers-shoes-or-in-my-case-web-design-for-myself/</link>
		<comments>http://www.acketon.com/blog/shoemakers-shoes-or-in-my-case-web-design-for-myself/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 10:05:36 +0000</pubDate>
		<dc:creator>Dakota</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.acketon.com/?p=383</guid>
		<description><![CDATA[I&#8217;ve been trying to do better about working on my own site, which recently went under a complete redesign. I got tired of the old design, which was not optimized for search engines, nor was it easy to update or manage as it was based on old code that I kept recycling over the years [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to do better about working on my own site, which recently went under a complete redesign. I got tired of the old design, which was not optimized for search engines, nor was it easy to update or manage as it was based on old code that I kept recycling over the years and building on. So I decided to redesign it from the ground up, which was a slow project, being a designer, you would think it would be easy to design your own website, right? Wrong. Having yourself for a client is probably the worst client you can have.</p>
<h3>Perpetual Redesign Hell</h3>
<p>I spent the better part of 10 months redesigning my site and branding, never quite sure if I was done and always pushing the project to the back burner because client work comes first. So in May I got tired of looking at the old site, which was full of content, but not representative of my abilities as a designer and I decided to delete it all and move this site from development to live. It was not finished, and really it still isn&#8217;t but I knew that pushing it live with problems and missing pieces would be the only way I&#8217;d force myself to find the time to get it completed.</p>
<h3>Missing work</h3>
<p>And now, a few months after I launched it, I&#8217;m realizing how much of my work from my old portfolio is missing. When I launched this site in May I had only entered one website into my portfolio section, the rest was print work. Web design is my specialty so to only have one piece was not very good to say the least.</p>
<p>I&#8217;ve been working the past few weeks late a night to enter more pieces from my portfolio. Some of it is work from many years ago, some from clients, some from places I&#8217;ve worked, some freelance and some from my time as a student. What&#8217;s hard now is to go through all of my work, (find it first!) and decide what to include. There is a lot of work, and some of it is now outdated and shows it&#8217;s age, but I feel it is important to show some older pieces because it shows the history I have in the field.</p>
<p>So what do you think? Is it a good idea to include older work&#8230; to establish that history and chain of experience or is it better to show less and only show the most recent or best work of your career?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acketon.com/blog/shoemakers-shoes-or-in-my-case-web-design-for-myself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
