<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>shawnhubbard.net</title>
	
	<link>http://www.shawnhubbard.net</link>
	<description>Hello.  My name is Shawn.  I'm a husband and a father, amateur photographer, musician, outdoor enthusiast...and I make websites too.</description>
	<lastBuildDate>Thu, 03 Nov 2011 16:40:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/shawnhubbard/TMlC" /><feedburner:info uri="shawnhubbard/tmlc" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Easily Add Speech Input To Your Search Fields</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/Ln3PYWPfyMA/</link>
		<comments>http://www.shawnhubbard.net/development/easily-add-speech-input-to-your-search-fields/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 16:54:07 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=212</guid>
		<description><![CDATA[<p>Unfortunately, this only works in Chrome, but it&#8217;s super simple and easy to implement.  All you need to do is add an x-webkit-speech attribute to the proper input element.</p>
<p>With JQuery, we can target an input dynamically, and add in the attribute using the attr(); method.  Since the attribute doesn&#8217;t require a value, we&#8217;ll need to pass the webkit speech ...<p><a href="http://www.shawnhubbard.net/development/easily-add-speech-input-to-your-search-fields/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Unfortunately, this only works in Chrome, but it&#8217;s super simple and easy to implement.  All you need to do is add an <code>x-webkit-speech</code> attribute to the proper <code>input</code> element.</p>
<p>With JQuery, we can target an input dynamically, and add in the attribute using the <code>attr();</code> method.  Since the attribute doesn&#8217;t require a value, we&#8217;ll need to pass the webkit speech attribbute, and an empty value to JQuery&#8217;s attribute method like so: <code>attr('x-webkit-speech', '');</code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">//add speech input to a text field via JQuery</span>
$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> 
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#search'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'x-webkit-speech'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Big thanks to <a href="http://www.phpied.com/x-webkit-speech-input-and-textareas/" title="PHPied.com Speech Input Post" target="_blank">phpied.com</a> for the inspiration.</p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/Ln3PYWPfyMA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/development/easily-add-speech-input-to-your-search-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/development/easily-add-speech-input-to-your-search-fields/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=easily-add-speech-input-to-your-search-fields</feedburner:origLink></item>
		<item>
		<title>Unique Conformity Development</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/j_2vs30Jdo8/</link>
		<comments>http://www.shawnhubbard.net/development/unique-conformity-development/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 18:07:53 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=197</guid>
		<description><![CDATA[<p>Unique Conformity is a ministry based out of Colorado that needed a website.  My good friend Ben Mercuri designed the site, and I did the WordPress integration.</p>
<p>For a bit of extra flair, I included some CSS3 transitions, box-shadow, and opacity on the drop-down menus.  The WordPress integration also included tweaking the &#8220;custom background&#8221; feature so the background on the homepage ...<p><a href="http://www.shawnhubbard.net/development/unique-conformity-development/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Unique Conformity is a ministry based out of Colorado that needed a website.  My good friend Ben Mercuri designed the site, and I did the WordPress integration.</p>
<p>For a bit of extra flair, I included some CSS3 transitions, box-shadow, and opacity on the drop-down menus.  The WordPress integration also included tweaking the &#8220;custom background&#8221; feature so the background on the homepage can be changed by the user via the backend.</p>
<p><a title="Unique Conformity's Website" href="http://uniqueconformity.com" target="_blank">UniqueConformity.com</a></p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/j_2vs30Jdo8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/development/unique-conformity-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/development/unique-conformity-development/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=unique-conformity-development</feedburner:origLink></item>
		<item>
		<title>Better Title Tags In Ekklesia 360</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/NXxLTADH1Cw/</link>
		<comments>http://www.shawnhubbard.net/development/better-title-tags-in-ekklesia-360/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 20:59:02 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[cms]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=172</guid>
		<description><![CDATA[<p>I&#8217;ve been the primary user and manager of our Ekklesia 360 site for a couple of years now.  It&#8217;s a nice system, especially for large churches because it includes very useful functionality right out of the box.</p>
<p>However, as functional and useful as some of the features are, optimizing your site for search engines and user navigation can be a ...<p><a href="http://www.shawnhubbard.net/development/better-title-tags-in-ekklesia-360/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been the primary user and manager of our Ekklesia 360 site for a couple of years now.  It&#8217;s a nice system, especially for large churches because it includes very useful functionality right out of the box.</p>
<p>However, as functional and useful as some of the features are, optimizing your site for search engines and user navigation can be a little daunting.  One thing that has been bugging me for a while now is Ekk&#8217;s lack of attention for the <code>&lt;title&gt;</code> element.</p>
<p>Because of how the Monk CMS API works, each template (or module) type uses a different API call to spit out content.  This means that each page, article, event, or sermon requires a different <code>getContent()</code> statement to find the page&#8217;s content.</p>
<p>Here&#8217;s a hack-ish solution I came up with to display a more relevant <code>&lt;title&gt;</code> element using PHP to find the template type using the page URI.  After the page URI is found with <code>$_SERVER['REQUEST_URI']</code>, we&#8217;re using <code>preg_split()</code> to find the first part of the URI, which is the template type.  After that&#8217;s found, we show Ekklesia which <code>getContent()</code> statement to use and then we get the correct title, no matter where we are in the site.</p>
<p>This should help those (like us) who have been victims of the dreaded &#8220;duplicate content&#8221; warnings on Google webmaster tools and similar systems.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;title&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
  <span style="color: #000088;">$hdtitle</span> <span style="color: #339933;">=</span> getContent<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;page&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;find:&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'nav'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;show:__title__&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;noecho&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$hdtitle</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;INDEX&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Wheatland Salem Church | Naperville &amp; Oswego, IL.&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$hdtitle</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$hdtitle</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; | &quot;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$hdtitle</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>			
      <span style="color: #000088;">$uriPath</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_split</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/\//&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000088;">$uriKey</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$uriPath</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>		
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uriKey</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;article&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        getContent<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;article&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;display:detail&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;find:&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'slug'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;show:__title__ | &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uriKey</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;sermons&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Sermons | Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uriKey</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;events&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Events | Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uriKey</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;sermon&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        getContent<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;sermon&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;display:detail&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;find:&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'slug'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;show:__title__ | &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uriKey</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;event&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        getContent<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;event&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;display:detail&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;find:&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'slug'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;show:__title__ | &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Wheatland Salem Church&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/title&gt;</pre></div></div>

<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/NXxLTADH1Cw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/development/better-title-tags-in-ekklesia-360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/development/better-title-tags-in-ekklesia-360/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=better-title-tags-in-ekklesia-360</feedburner:origLink></item>
		<item>
		<title>ReconnectChristmas.com</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/-wjHtwNhClk/</link>
		<comments>http://www.shawnhubbard.net/portfolio/reconnectchristmas-com/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 16:21:05 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=166</guid>
		<description><![CDATA[<p>I designed and developed this site to provide our congregation with updates about Reconnect Christmas &#8211; our Christmas giving campaign which was started in 2008.</p>
<p>I designed the site, integrated wordpress, and included a &#8216;progress&#8217; meter on the frontpage that we could dynamically update during our giving Sundays.  The site (as you can see) does not get updated as much as ...<p><a href="http://www.shawnhubbard.net/portfolio/reconnectchristmas-com/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I designed and developed this site to provide our congregation with updates about Reconnect Christmas &#8211; our Christmas giving campaign which was started in 2008.</p>
<p>I designed the site, integrated wordpress, and included a &#8216;progress&#8217; meter on the frontpage that we could dynamically update during our giving Sundays.  The site (as you can see) does not get updated as much as we&#8217;d like, mainly because the updates depend on missionaries who are in remote locations, much of the time without consistent internet access.</p>
<p>Another iteration of this site is planned for Christmas 2011 focused on testimonials of those who have received the donated funds and more updates from missionaries &#8211; though due to budgetary concerns, the status of this year&#8217;s RC campaign is not yet known.</p>
<p>Visit <a title="Reconnect Christmas Website" href="http://www.reconnectchristmas.com" target="_blank">reconnectchristmas.com</a>.</p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/-wjHtwNhClk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/portfolio/reconnectchristmas-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/portfolio/reconnectchristmas-com/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=reconnectchristmas-com</feedburner:origLink></item>
		<item>
		<title>Welcome!</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/JoXb-ke2Fr4/</link>
		<comments>http://www.shawnhubbard.net/announcements/welcome/#comments</comments>
		<pubDate>Tue, 10 May 2011 03:51:05 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[announcements]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=152</guid>
		<description><![CDATA[<p>This is my first HTML5 wordpress theme, so please bear with me while I get the kinks ironed out.  Most modern browsers work great (i.e. anything but IE), but let me know if you experience any issues!</p>
]]></description>
			<content:encoded><![CDATA[<p>This is my first HTML5 wordpress theme, so please bear with me while I get the kinks ironed out.  Most modern browsers work great (i.e. anything but IE), but let me know if you experience any issues!</p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/JoXb-ke2Fr4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/announcements/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/announcements/welcome/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=welcome</feedburner:origLink></item>
		<item>
		<title>Wheatland Life</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/SDgsKZg0qXk/</link>
		<comments>http://www.shawnhubbard.net/design/wheatland-life/#comments</comments>
		<pubDate>Mon, 09 May 2011 21:16:04 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=129</guid>
		<description><![CDATA[<p>At Wheatland Salem Church, I was the leader of our newly formed communications team.  While assessing our methods and modes of communication, we came to the conclusion that we needed a new publication which would focus on the &#8220;whys&#8221; of our ministry and not the &#8220;whats.&#8221;</p>
<p>With our small team, we planned, designed, and produced &#8220;Wheatland Life&#8221; in-house.  On ...<p><a href="http://www.shawnhubbard.net/design/wheatland-life/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>At Wheatland Salem Church, I was the leader of our newly formed communications team.  While assessing our methods and modes of communication, we came to the conclusion that we needed a new publication which would focus on the &#8220;whys&#8221; of our ministry and not the &#8220;whats.&#8221;</p>
<p>With our small team, we planned, designed, and produced &#8220;Wheatland Life&#8221; in-house.  On the earlier versions, I was responsible for the design, layout, and printing, but later inherited the project manager role when our staffing situation changed.</p>
<p>We distribute this publication by mail, but also use <a href="http://www.issuu.com">issuu.com</a> to provide our congregation with an interactive online version they can read directly on the web.  This has been a very successful change in the way we communicate with the younger, more tech savvy members at the church.</p>
<p>I now manage the production of the publication from planning to printing, working with and coordinating a group of volunteer writers and staff members.</p>
<p>A list of Wheatland Life editions can be found on <a href="http://wheatlandsalem.org/wheatland-life">wheatlandsalem.org/wheatland-life</a>.</p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/SDgsKZg0qXk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/design/wheatland-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/design/wheatland-life/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=wheatland-life</feedburner:origLink></item>
		<item>
		<title>WheatlandSalem.org Redesign</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/7viAuUCyLro/</link>
		<comments>http://www.shawnhubbard.net/portfolio/redesigned-wheatlandsalem-org/#comments</comments>
		<pubDate>Mon, 09 May 2011 20:22:41 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=124</guid>
		<description><![CDATA[<p>In January of 2009, I set out to redesign Wheatland Salem Church&#8217;s main website.  With the help and expertise of Fishhook, who did the site design and build-out, we cranked out the site in a little over a month.</p>
<p>I was responsible for communicating our needs to Fishhook, working with them on the details of the design and functionality, and ...<p><a href="http://www.shawnhubbard.net/portfolio/redesigned-wheatlandsalem-org/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>In January of 2009, I set out to redesign Wheatland Salem Church&#8217;s main website.  With the help and expertise of <a href="http://www.fishhook.us">Fishhook</a>, who did the site design and build-out, we cranked out the site in a little over a month.</p>
<p>I was responsible for communicating our needs to Fishhook, working with them on the details of the design and functionality, and content-population after the site was complete.</p>
<p>My ongoing job responsibilities included updates as requested by the staff and ministry teams, designing site graphics and other media, and aided in assessing current and future needs based on user input and staff requests.</p>
<p>After the launch of the site and a new online communication plan, we saw a 35% increase in unique visits.</p>
<p><a href="http://www.wheatlandsalem.org">wheatlandsalem.org</a></p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/7viAuUCyLro" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/portfolio/redesigned-wheatlandsalem-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/portfolio/redesigned-wheatlandsalem-org/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=redesigned-wheatlandsalem-org</feedburner:origLink></item>
		<item>
		<title>WSC Email Newsletter Redesign</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/DX2jA_rf2VI/</link>
		<comments>http://www.shawnhubbard.net/design/wsc-email-newsletter-redesign/#comments</comments>
		<pubDate>Mon, 09 May 2011 16:37:35 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=145</guid>
		<description><![CDATA[<p>I&#8217;ll spare you the gory details, but our email newsletter used to be the typical church email newsletter, over 4,000px long, comic sans, you name it.  We needed something cleaner, simpler, and more organized.</p>
<p>We also used to send a TON of emails.  Before we enacted a communications plan, we gave the whole staff unfettered access to our Constant ...<p><a href="http://www.shawnhubbard.net/design/wsc-email-newsletter-redesign/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll spare you the gory details, but our email newsletter used to be the typical church email newsletter, over 4,000px long, comic sans, you name it.  We needed something cleaner, simpler, and more organized.</p>
<p>We also used to send a TON of emails.  Before we enacted a communications plan, we gave the whole staff unfettered access to our Constant Contact account.  One month, we sent 32 emails, and over half of those were to the &#8220;All Church&#8221; list.</p>
<p>In early 2010, we switched to <a title="Mailchimp" href="http://mailchimp.com" target="_blank">Mailchimp</a>, and haven&#8217;t looked back.  I designed an email template using Mailchimp&#8217;s template tags, set up user groups, and gave our users a way to filter out content that they didn&#8217;t want to see.</p>
<p>Here&#8217;s a look at the new email:</p>
<p><a title="This Week at Wheatland Salem Church Email Newsletter" href="http://us1.campaign-archive2.com/?u=26a2833a89c94f1df8a71b73f&amp;id=5a079edb60&amp;e=949e191908" target="_blank">This Week at Wheatland Salem Church</a></p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/DX2jA_rf2VI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/design/wsc-email-newsletter-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/design/wsc-email-newsletter-redesign/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=wsc-email-newsletter-redesign</feedburner:origLink></item>
		<item>
		<title>Freebie: Orbs Motion Loop</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/yMCy9PFtomI/</link>
		<comments>http://www.shawnhubbard.net/freebies/a-kick-off/#comments</comments>
		<pubDate>Sun, 01 May 2011 22:38:09 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[freebies]]></category>
		<category><![CDATA[announcements]]></category>
		<category><![CDATA[freebie]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=48</guid>
		<description><![CDATA[<p>I made this motion loop for a sermon series at church.  Feel free to use it as you would like, licensing is outlined below.  We use this as a motion loop in ProPresenter.</p>
<p>
<p>Orbs Motion Loop from Wheatland Salem on Vimeo.</p>
<p>Orbs Motion Loop by Wheatland Salem Churchq is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License.Permissions ...<p><a href="http://www.shawnhubbard.net/freebies/a-kick-off/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I made this motion loop for a sermon series at church.  Feel free to use it as you would like, licensing is outlined below.  We use this as a motion loop in <a href="http://renewedvision.com">ProPresenter</a>.</p>
<p><object width="557" height="457"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6936029&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6936029&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="557" height="457"></embed></object>
<p><a href="http://vimeo.com/6936029">Orbs Motion Loop</a> from <a href="http://vimeo.com/wheatlandsalem">Wheatland Salem</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/us/88x31.png" /></a><br /><span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/MovingImage" property="dc:title" rel="dc:type">Orbs Motion Loop</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.wheatlandsalem.org" property="cc:attributionName" rel="cc:attributionURL">Wheatland Salem Churchq</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License</a>.<br />Permissions beyond the scope of this license may be available at <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.wheatlandsalem.org" rel="cc:morePermissions">http://www.wheatlandsalem.org</a>.</p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/yMCy9PFtomI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/freebies/a-kick-off/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/freebies/a-kick-off/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=a-kick-off</feedburner:origLink></item>
		<item>
		<title>Provident Label Group Christmas Site</title>
		<link>http://feedproxy.google.com/~r/shawnhubbard/TMlC/~3/phsKFC_S3xE/</link>
		<comments>http://www.shawnhubbard.net/portfolio/provident-label-group-christmas-site/#comments</comments>
		<pubDate>Sun, 01 May 2011 03:12:08 +0000</pubDate>
		<dc:creator>Shawn Hubbard</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.shawnhubbard.net/?p=134</guid>
		<description><![CDATA[<p>I designed and developed this micro-site (album art was provided for design) for Provident Label Group in Nashville, TN. to advertise a few of their artists&#8217; 2009 Christmas albums.</p>
<p>This was my first experience using JQuery UI.  I utilized the accordion plugin to collapse and expand the different sections containing the artist&#8217;s information.  I also used a flash-based media ...<p><a href="http://www.shawnhubbard.net/portfolio/provident-label-group-christmas-site/">continue reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I designed and developed this micro-site (album art was provided for design) for Provident Label Group in Nashville, TN. to advertise a few of their artists&#8217; 2009 Christmas albums.</p>
<p>This was my first experience using JQuery UI.  I utilized the accordion plugin to collapse and expand the different sections containing the artist&#8217;s information.  I also used a flash-based media player which communicated with javascript in the page to play different songs from the different artists, so the player remained independent of the different sections.</p>
<p>A live version of this site no longer exists on Provident&#8217;s servers, but you can find one here: <a href="http://www.shawnhubbard.net/provident">shawnhubbard.net/provident</a></p>
<img src="http://feeds.feedburner.com/~r/shawnhubbard/TMlC/~4/phsKFC_S3xE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.shawnhubbard.net/portfolio/provident-label-group-christmas-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.shawnhubbard.net/portfolio/provident-label-group-christmas-site/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=provident-label-group-christmas-site</feedburner:origLink></item>
	</channel>
</rss>

