<?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>Chris Gilligan » new media</title>
	<atom:link href="http://chrisgilligan.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://chrisgilligan.com/</link>
	<description>portfolio of web work</description>
	<lastBuildDate>Tue, 10 Oct 2023 19:13:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>High Ed Web 2023 Presentation</title>
		<link>https://chrisgilligan.com/wordpress/hew2023/</link>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Fri, 15 Sep 2023 13:46:15 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2569</guid>

					<description><![CDATA[<p>WordPress has a ridiculously low point of entry, and that may be fine for a single developer or site owner who does everything from the Dashboard and Theme Customizer. But what if you have multiple developers and multiple environments?</p>
<p>The post <a href="https://chrisgilligan.com/wordpress/hew2023/">High Ed Web 2023 Presentation</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2023/09/hew-conf.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p>
<p class="wp-block-paragraph"> I have been accepted to High Ed Web 2023 as a presenter:</p>



<ul class="wp-block-list">
<li><a class="" href="https://events.highedweb.org/heweb23/session/1435234/modernize-wordpress-for-a-multi-developer-multi-environment-workflow">Modernize WordPress for a multi-developer, multi-environment workflow</a></li>



<li><a href="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2023/10/utc-chris-wordpress.pdf?x25141">Presentation slides (PDF)</a></li>
</ul>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="687" height="200" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2023/09/hew-2023.png?x25141" alt="" class="wp-image-2580" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2023/09/hew-2023.png?x25141 687w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2023/09/hew-2023-300x87.png?x25141 300w" sizes="(max-width: 687px) 100vw, 687px" /></figure>


<p>WordPress has a ridiculously low point of entry, and that may be fine for a single developer or site owner who does everything from the Dashboard and Theme Customizer. But what if you have multiple developers and multiple environments? How do you develop and deploy new features, maintain software dependencies, and keep your sanity? There really is a better way: Bedrock from <a href="http://roots.io/" target="_blank" rel="noreferrer noopener">Roots.io</a>, a professional WordPress project boilerplate.</p>
<p>UT Chattanooga had a WordPress Multisite that was managed &#8220;the old way&#8221; since 2007. We had a test environment and a production environment, running on a solid infrastructure, but making updates to our custom theme and plugins was done via FTP and sheer luck. Project history included broken deployments, seat-of-the-pants recoveries, and well-meaning super-admins crashing the production site by installing incompatible plugins.</p>
<p>In 2021, with several new coders onboard and increased pressure to develop and deliver custom plugins and themes, we knew we needed to modernize our WordPress project, and automate deployment to the on-prem infrastructure.</p>
<p>For local development, Lando was an obvious choice, since we were already using it for Drupal development. But what about defining the project with Composer, and using Git for multi-dev source control? Enter Bedrock, from <a href="http://roots.io/" target="_blank" rel="noreferrer noopener">Roots.io</a>, a professional WordPress project boilerplate. Bedrock makes WordPress multi-environment capable, while PHP Composer manages all WordPress software, even custom private themes and plugins. Bedrock restructures WordPress core for multiple environments with individual configurations, and makes it easy to keep the project under version control with Git.</p>
<p>Laravel Envoy makes multi-environment deployments predictable, with zero downtime and scripted server commands. No more long nights of maintenance, no more running WordPress automated updates direct from the Dashboard. No more trying to remember all of the post-deployment tasks, such as updating the database and flushing caches. And what if something fails and we need to roll back to the previous deployment? Well, we have that covered! Envoy lets you run any command line SSH or WP-CLI task in a storybook script.</p><p>The post <a href="https://chrisgilligan.com/wordpress/hew2023/">High Ed Web 2023 Presentation</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Use WP-CLI to add categories to posts</title>
		<link>https://chrisgilligan.com/portfolio/use-wp-cli-to-add-categories-to-posts/</link>
					<comments>https://chrisgilligan.com/portfolio/use-wp-cli-to-add-categories-to-posts/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Thu, 16 Mar 2023 15:11:08 +0000</pubDate>
				<category><![CDATA[Portfolio]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2554</guid>

					<description><![CDATA[<p>BASH command to parse CSV and run wp post term add category, using while and IFS (Internal Field Separator)</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/use-wp-cli-to-add-categories-to-posts/">Use WP-CLI to add categories to posts</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2023/03/Screenshot-2023-03-16-at-11.08.47.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p>
<p class="wp-block-paragraph">I was asked to take a spreadsheet of WordPress posts and add a category to each post. This is easily done if the category is the same for each of the posts. I thought about re-using a wp-cli bash command I had used previously to add one category to a list of post ID&#8217;s.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: bash; title: ; notranslate">
for x in $(cat posts_list.txt) ; do wp post --url=https://wpmulti.site/blog-slug/ term add $x category category-slug ; done
</pre></div>


<p class="wp-block-paragraph">Doing that would have required splitting the posts into separate .txt files for each category, which was not feasible with the number of posts and categories in the spreadsheet.</p>



<p class="wp-block-paragraph">The spreadsheet included the post ID, title, and the text name of the category.</p>



<h3 class="wp-block-heading">Clean up the data</h3>



<p class="wp-block-paragraph">The first step is to properly format and sanitize the spreadsheet, to change the category names to the correct corresponding slug. This was relatively simple in Excel, by changing the case of the category names to lowercase, removing all special characters such as ampersands and commas, and replacing spaces with hyphens. I didn&#8217;t need the titles at all, so I deleted that column. In the first row, I added column headers: post_id and post_category.</p>



<p class="wp-block-paragraph">Note: be sure you have entered the categories in WordPress before you run the import, and make sure the slugs match what is in the import spreadsheet. Otherwise, you will have to edit the category names after the import from the newly created category slugs.</p>



<p class="wp-block-paragraph">Export the spreadsheet to CSV.</p>



<h3 class="wp-block-heading">Parse a CSV file and add categories to WordPress posts by post id and category slug</h3>



<p class="wp-block-paragraph">Here&#8217;s a simple BASH command to parse a CSV and run <code>wp post term add category</code>, using while and IFS (Internal Field Separator):</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: bash; title: ; notranslate">
while IFS=&quot;,&quot; read post_id post_category ; do wp post --url=https://wpmulti.site/blog-slug/ term add $post_id category $post_category ; done &lt; &quot;post-add-category.csv&quot;
</pre></div><p>The post <a href="https://chrisgilligan.com/portfolio/use-wp-cli-to-add-categories-to-posts/">Use WP-CLI to add categories to posts</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/portfolio/use-wp-cli-to-add-categories-to-posts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Everviz Chart Test</title>
		<link>https://chrisgilligan.com/portfolio/everviz-chart-test/</link>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Thu, 13 Aug 2020 00:17:54 +0000</pubDate>
				<category><![CDATA[Portfolio]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2506</guid>

					<description><![CDATA[<p>This is a chart created with Everviz embed code in a custom field.</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/everviz-chart-test/">Everviz Chart Test</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2020/09/cumulative-cases-of-covi.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p>
<p class="wp-block-paragraph">This is a chart created with Everviz embed code in a custom field.</p>



<p class="wp-block-paragraph"><div id="highcharts--B96YWShY"><script src="https://app.everviz.com/inject/-B96YWShY/" defer="defer"></script></div></p>
<p>The post <a href="https://chrisgilligan.com/portfolio/everviz-chart-test/">Everviz Chart Test</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>University Website Redesign: Scrapbook</title>
		<link>https://chrisgilligan.com/drupal/university-website-redesign-scrapbook/</link>
					<comments>https://chrisgilligan.com/drupal/university-website-redesign-scrapbook/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Wed, 19 Jul 2017 12:51:27 +0000</pubDate>
				<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Education]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2444</guid>

					<description><![CDATA[<p>Here are some websites and resources that may be useful for a redesign of UTC.edu. Higher Education sites College of Southern Nevada Case Study: Acquia &#124; College of Southern Nevada &#124; Acquia Engage Award 2016 Finalist 68 percent increase in page views 60 percent decrease in bounce rate 90 percent increase in mobile visitors Austin Peay State [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/drupal/university-website-redesign-scrapbook/">University Website Redesign: Scrapbook</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-24-at-4.04.09-PM.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p>Here are some websites and resources that may be useful for a redesign of UTC.edu.</p>
<h1>Higher Education sites</h1>
<h2>College of Southern Nevada</h2>
<p><strong>Case Study:</strong><br />
<a href="https://www.acquia.com/resources/case-study/college-southern-nevada">Acquia | College of Southern Nevada | Acquia Engage Award 2016 Finalist</a></p>
<ul>
<li>68 percent increase in page views</li>
<li>60 percent decrease in bounce rate</li>
<li>90 percent increase in mobile visitors</li>
</ul>
<p><a href="https://www.csn.edu"><img loading="lazy" decoding="async" class="aligncenter wp-image-2491 size-large" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-24-at-4.04.09-PM-982x1024.png?x25141" alt="" width="982" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-24-at-4.04.09-PM-982x1024.png?x25141 982w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-24-at-4.04.09-PM-288x300.png?x25141 288w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-24-at-4.04.09-PM-768x800.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-24-at-4.04.09-PM.png?x25141 1489w" sizes="auto, (max-width: 982px) 100vw, 982px" /></a></p>
<p><a href="https://www.csn.edu" class="woo-sc-button  silver" ><span class="woo-">CSN.edu</span></a></p>
<h2>Austin Peay State University</h2>
<p>This is a newer design that is built on OU Campus CMS.</p>
<ul>
<li>Very clean design, mobile first.</li>
<li>Prominent but not obtrusive Apply/Visit/Give sub-menu on home page.</li>
<li>Great organization to introduce Admissions up front: Explore Austin Peay.</li>
<li>Student profile cards: diversity of people; could use diversity of disciplines.</li>
<li>Visual index of major colleges with department landing pages.</li>
<li>Visual calendar layout for upcoming featured events/dates/deadlines.</li>
</ul>
<p><a href="http://apsu.edu/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2489" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-3.20.46-PM-667x1024.png?x25141" alt="" width="667" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-3.20.46-PM-667x1024.png?x25141 667w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-3.20.46-PM-195x300.png?x25141 195w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-3.20.46-PM-768x1179.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-3.20.46-PM.png?x25141 1011w" sizes="auto, (max-width: 667px) 100vw, 667px" /></a></p>
<p><a href="http://www.apsu.edu/" class="woo-sc-button  silver" ><span class="woo-">APSU.edu</span></a></p>
<h2>UT Knoxville</h2>
<p>One of the most innovative and fresh website designs in higher education.</p>
<p>Home page &amp; Vol Stories built with Expression Engine CMS; interior pages with WordPress CMS, and other portions such as maps are custom-built.</p>
<ul>
<li>Fresh and simple, very fast page load; only 1 large image.</li>
<li>Featured Vol Story changes frequently.</li>
<li>Menu is main part of the page. Most frequently used links are grouped with logo at very top left.</li>
<li>Separate landing page for news.</li>
</ul>
<p><a href="http://www.utk.edu"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2454" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.35.09-AM-594x1024.png?x25141" alt="" width="594" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.35.09-AM-594x1024.png?x25141 594w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.35.09-AM-174x300.png?x25141 174w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.35.09-AM-768x1324.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.35.09-AM.png?x25141 900w" sizes="auto, (max-width: 594px) 100vw, 594px" /></a></p>
<p><a href="http://www.utk.edu" class="woo-sc-button  silver" ><span class="woo-">UTK.edu</span></a></p>
<h2>South Dakota State University</h2>
<p>Mobile-first, recruitment-first. Close to our color palette. Drupal 8.</p>
<p><a href="https://www.sdstate.edu"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2453" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.33.27-AM-594x1024.png?x25141" alt="" width="594" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.33.27-AM-594x1024.png?x25141 594w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.33.27-AM-174x300.png?x25141 174w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.33.27-AM-768x1324.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.33.27-AM.png?x25141 900w" sizes="auto, (max-width: 594px) 100vw, 594px" /></a></p>
<p><a href="https://www.sdstate.edu" class="woo-sc-button  silver" ><span class="woo-">SDstate.edu</span></a></p>
<h2>Florida International University</h2>
<p>Very close to UTC color palette. Creative use of photography and marketing in the image carousel. Proper use of HTML titles vs. text-on-image. Intersting, simple calendar &#8220;teaser&#8221;.</p>
<p><a href="http://www.fiu.edu/index.html"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2456" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.36.56-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.36.56-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.36.56-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.36.56-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.36.56-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="http://www.fiu.edu/index.html" class="woo-sc-button  silver" ><span class="woo-">FIU.edu</span></a></p>
<h2>Chicago Booth Review</h2>
<p>Drupal 8 CMS.</p>
<p>Excellent news magazine style. Featured/Cover article, popular articles, latest articles, video.</p>
<p><a href="http://review.chicagobooth.edu"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2457" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.25-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.25-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.25-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.25-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.25-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="http://review.chicagobooth.edu" class="woo-sc-button  silver" ><span class="woo-">Review.ChicagoBooth.edu</span></a></p>
<hr />
<h1>Corporate sites</h1>
<h2>The Guardian</h2>
<p>Ultra-responsive and fast loading news site with excellent use of color.</p>
<ul>
<li>large custom serif type, readable on all devices</li>
<li>multiple versions of headlines, subheads and excerpts for home page, indices, and stories &#8211; very readable and scannable</li>
</ul>
<p><a href="https://www.theguardian.com"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2494" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-25-at-2.41.46-PM-725x1024.png?x25141" alt="" width="725" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-25-at-2.41.46-PM-725x1024.png?x25141 725w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-25-at-2.41.46-PM-213x300.png?x25141 213w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-25-at-2.41.46-PM-768x1084.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-25-at-2.41.46-PM.png?x25141 1096w" sizes="auto, (max-width: 725px) 100vw, 725px" /></a></p>
<p><a href="https://www.theguardian.com" class="woo-sc-button  silver" ><span class="woo-">The Guardian</span></a></p>
<h2>First Tennessee Bank</h2>
<p><strong>Features a &#8220;task-oriented&#8221; home page.</strong>&#8220;I want to&#8230; do X&#8221; actions, &#8220;I&#8217;m looking for&#8230; Y&#8221; interactives &amp; animated menus.</p>
<p>There are multiple pathways to common tasks:</p>
<ul>
<li>prominent top-level menus with icons and action words</li>
<li>call-to action panels for other common tasks or features</li>
<li>common pathways have several routes
<ul>
<li>also enables A/B testing to see which method or path is most effective</li>
</ul>
</li>
</ul>
<p><a href="https://ftb.com/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2458" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.55-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.55-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.55-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.55-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.38.55-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="https://ftb.com/" class="woo-sc-button  silver" ><span class="woo-">FTB.com</span></a></p>
<h2>National Trust for Historic Preservation</h2>
<p>Beautiful site with video backgrounds, clean-yet-interesting design with some slanted lines to add interest.</p>
<ul>
<li>Scalable Vector Graphics (SVG images) for headlines.</li>
<li>Extensive and beautiful photography.</li>
<li>Simple interactivity on wide hover in the CTAs, blog article cards, etc.</li>
</ul>
<p><a href="https://savingplaces.org/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2459" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.39.33-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.39.33-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.39.33-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.39.33-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.39.33-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="https://savingplaces.org/" class="woo-sc-button  silver" ><span class="woo-">SavingPlaces.org</span></a></p>
<h2>United States Postal Service</h2>
<p><strong>Action-oriented interface:</strong> Track Package, Create Label, Buy Stamps, Order Boxes.</p>
<ul>
<li>Intersting use of slanted elements that match the logo geometry.</li>
<li>Basic white background lets the corporate colors stand out.</li>
<li>&#8220;Blades&#8221; Section in the middle of the page gives a more visual &amp; interactive option for CTAs.</li>
</ul>
<p><a href="https://www.usps.com/welcome.htm"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2460" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.40.01-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.40.01-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.40.01-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.40.01-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.40.01-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="https://www.usps.com/welcome.htm" class="woo-sc-button  silver" ><span class="woo-">USPS.com</span></a></p>
<h2>Chevrolet</h2>
<p>Chevy.com, like many auto sites, has rich mega-menu content.</p>
<ul>
<li>Clean white palette, which gives photography and brand-color highlights a chance to stand out.</li>
<li>Scalable Vector Graphic (SVG) icons and display text are accessible and look great on all devices.</li>
</ul>
<p><a href="http://www.chevrolet.com/low-cab-forward-trucks"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2461" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.19-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.19-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.19-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.19-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.19-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="http://www.chevrolet.com/low-cab-forward-trucks" class="woo-sc-button  silver" ><span class="woo-">Chevy.com</span></a></p>
<h2>Sucuri</h2>
<p><strong>Long-scroll page</strong>, heavy use of icons.</p>
<ul>
<li>Strong use of a very limited color palette.</li>
<li>CTAs right in the top menu, then repeated throughout page.</li>
</ul>
<p><a href="https://sucuri.net"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2462" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.50-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.50-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.50-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.50-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.41.50-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="https://sucuri.net" class="woo-sc-button  silver" ><span class="woo-">Sucuri.net</span></a></p>
<h2>Drupal</h2>
<p><strong>Simple and clean design</strong> with a hero video background.</p>
<p><a href="http://www.drupal.com"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2463" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.28-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.28-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.28-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.28-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.28-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="http://www.drupal.com" class="woo-sc-button  silver" ><span class="woo-">Drupal.com</span></a></p>
<h2>Mercury Marine</h2>
<p><strong>Good visual menus:</strong> icon top menus, image-filled megamenus.</p>
<ul>
<li>Correct use of slider/carousel with delayed titles and CTAs.</li>
</ul>
<p><a href="https://www.mercurymarine.com/en/us/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2464" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.56-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.56-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.56-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.56-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.42.56-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="https://www.mercurymarine.com/en/us/" class="woo-sc-button  silver" ><span class="woo-">Mercury Marine</span></a></p>
<h2> AirServer</h2>
<p><strong>Cute animations &amp; graphics</strong> with a consistent style.</p>
<p><strong>Menu:</strong> desktop effect on top menu after scroll; pinned/fixed menu on scroll; mobile menu interactive animations.</p>
<p><a href="https://www.airserver.com/Usage/Education"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2466" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.43.36-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.43.36-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.43.36-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.43.36-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.43.36-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="https://www.airserver.com/Usage/Education" class="woo-sc-button  silver" ><span class="woo-">Air Server</span></a></p>
<hr />
<h1>Creative Sites</h1>
<h2>Macau Design Biennial</h2>
<p><strong>Long-scroll with definite color cues between sections.</strong></p>
<ul>
<li>Does not look like a website&#8230; looks like print.</li>
<li>Very creative interactions  invite exploration.</li>
</ul>
<p><a href="http://www.macaudesignbiennial.com/en/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2467" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.44.21-AM-749x1024.png?x25141" alt="" width="749" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.44.21-AM-749x1024.png?x25141 749w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.44.21-AM-219x300.png?x25141 219w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.44.21-AM-768x1050.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.44.21-AM.png?x25141 1134w" sizes="auto, (max-width: 749px) 100vw, 749px" /></a></p>
<p><a href="http://www.macaudesignbiennial.com/en/" class="woo-sc-button  silver" ><span class="woo-">Macau Design Biennial</span></a></p>
<h2>gskinner</h2>
<p><strong>Fast loading site with a long-scroll</strong>, landing page feel and multiple calls to action. Nice scrolling behavior for the Calls to Action (CTAs).</p>
<p><a href="http://gskinner.com"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2468" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.45.27-AM-787x1024.png?x25141" alt="" width="787" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.45.27-AM-787x1024.png?x25141 787w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.45.27-AM-231x300.png?x25141 231w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.45.27-AM-768x999.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.45.27-AM.png?x25141 1127w" sizes="auto, (max-width: 787px) 100vw, 787px" /></a></p>
<p><a href="http://gskinner.com" class="woo-sc-button  silver" ><span class="woo-">gskinner.com</span></a></p>
<h2>ustwo</h2>
<p><strong>Clean and simple logo + teaser video engages the viewer</strong>, shows off products, staff, users, services&#8230; makes you want to click or scroll down to learn more.</p>
<p>No menu or layout until click or scroll, then more user interface elements, navigation appear.</p>
<p><a href="https://ustwo.com/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2469" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.46.44-AM-1024x830.png?x25141" alt="" width="1024" height="830" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.46.44-AM-1024x830.png?x25141 1024w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.46.44-AM-300x243.png?x25141 300w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.46.44-AM-768x622.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.46.44-AM.png?x25141 1155w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p><a href="https://ustwo.com/" class="woo-sc-button  silver" ><span class="woo-">ustwo.com</span></a></p>
<h2>HTML5up: Solid State</h2>
<p>Super clean responsive landing page designs from a Nashville designer, see others at <a href="https://html5up.net/solid-state">html5up.net</a>.</p>
<p><a href="https://html5up.net/uploads/demos/solid-state/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2470" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.47.56-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.47.56-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.47.56-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.47.56-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.47.56-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="https://html5up.net/uploads/demos/solid-state/" class="woo-sc-button  silver" ><span class="woo-">HTML5up</span></a></p>
<h2>Palantir</h2>
<p>Drupal agency&#8230; design, use of colors, CTAs with interesting layout, interactivity/rollover effects, forms, etc. Very clean and mobile-first design.</p>
<p><a href="https://palantir.net"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2471" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.48.37-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.48.37-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.48.37-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.48.37-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.48.37-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="https://palantir.net/" class="woo-sc-button  silver" ><span class="woo-">Palantir.net</span></a></p>
<hr />
<h1>Drupal 8 Premium Themes</h1>
<p>These provide many more user interface elements than the base Bootstrap Drupal 8 Theme. Inexpensive jump-start for a project; typical price is $40-60.</p>
<p><a href="http://www.esors.com/demo/omni/consultancy/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2472" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.13-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.13-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.13-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.13-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.13-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="http://fiprint.drupalet.com"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2473" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.40-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.40-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.40-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.40-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.49.40-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="http://foundry.symphonythemes.net"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2474" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.09-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.09-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.09-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.09-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.09-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="http://demo.morethanthemes.com/scholarly8/default/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2475" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.43-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.43-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.43-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.43-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.50.43-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="http://stack.symphonythemes.net"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2476" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.04-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.04-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.04-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.04-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.04-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<p><a href="http://okno.drupalet.com"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2477" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.36-AM-712x1024.png?x25141" alt="" width="712" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.36-AM-712x1024.png?x25141 712w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.36-AM-209x300.png?x25141 209w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.36-AM-768x1104.png?x25141 768w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/07/screen-shot-2017-07-19-at-8.51.36-AM.png?x25141 1077w" sizes="auto, (max-width: 712px) 100vw, 712px" /></a></p>
<hr />
<h1>Resources:</h1>
<ul>
<li><a href="http://www.ecityinteractive.com/blog/elements-of-an-effective-university-website-design/">12 Elements of an Effective University Website Design<br />
</a><em>(Louis Miller, 4/14/16, <a href="http://www.ecityinteractive.com/blog/elements-of-an-effective-university-website-design/">ecityinteractive.com</a>)</em></li>
<li><a href="https://medium.com/microsoft-design/take-the-time-to-use-fewer-words-450e650cdaf7">Take the Time to Use Fewer Words</a><br />
<em>tl;dr: If a user experience needs an explanation, something is broken. Redesign until people do not need explanation.<br />
(Torrey Podmajersky, <a href="https://medium.com/microsoft-design/take-the-time-to-use-fewer-words-450e650cdaf7">Microsoft Design</a>)</em></li>
<li><a href="https://standards.usa.gov">U.S. Web Design Standards</a><br />
<em>Best practices in user interface and user experience, accessibility, etc.</em></li>
<li><a href="https://playbook.cio.gov">Digital Services Playbook</a><br />
<em>Tips for project management, design and execution of gov&#8217;t digital projects</em></li>
<li><a href="https://www.smashingmagazine.com/taking-pattern-libraries-next-level/">Taking Pattern Libraries to the Next Level</a><br />
<em>(Vitaly Friedman, <a href="https://www.smashingmagazine.com/taking-pattern-libraries-next-level/">smashingmagazine.com</a>)</em></li>
<li><a href="http://brentspore.com">Brent Spore &#8211; User Experience Designer</a><br />
<em>Case studies of high-profile projects for major clients</em></li>
<li><a href="http://brettjankord.com/projects/style-guide-boilerplate/">Style Guide Boilerplate<br />
</a><em>Catalog of the basic HTML user interface items; use to make a style guide page</em></li>
<li><a href="https://codepen.io/collection/AdpjMZ/2/">Magazine Article Inspired Layouts</a><br />
<em>These are nice for featured articles or landing pages; don&#8217;t look like web pages.</em></li>
<li><a href="https://www.microsoft.com/en-us/Design/inclusive">Microsoft Inclusive Design</a><br />
Opening up digital experiences to everyone, helping everyone interact with the world around them.</li>
</ul>
<p>The post <a href="https://chrisgilligan.com/drupal/university-website-redesign-scrapbook/">University Website Redesign: Scrapbook</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/drupal/university-website-redesign-scrapbook/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive and Accessible Charts and Graphs</title>
		<link>https://chrisgilligan.com/portfolio/responsive-accessible-charts-graphs/</link>
					<comments>https://chrisgilligan.com/portfolio/responsive-accessible-charts-graphs/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Wed, 15 Mar 2017 13:24:55 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2429</guid>

					<description><![CDATA[<p>I have been looking for a simple solution to create and manage &#8220;dashboard&#8221; type charts on a website. Something that would produce editable graphs, accessible content for screen readers, and fit into a responsive design. Chartist.js is a simple and independent library to create SVG charts in the DOM. Various plugins are available to extend [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/responsive-accessible-charts-graphs/">Responsive and Accessible Charts and Graphs</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2017/03/screen-shot-2017-03-15-at-9.27.13-AM.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p>I have been looking for a simple solution to create and manage &#8220;dashboard&#8221; type charts on a website. Something that would produce editable graphs, accessible content for screen readers, and fit into a responsive design.</p>
<p><a href="https://gionkunz.github.io/chartist-js/">Chartist.js</a> is a simple and independent library to create SVG charts in the DOM. Various plugins are available to extend the functionality and display options. In this example, the accessibility and axis label plugins are used. There are also plugins available for frameworks, and for WordPress (as a <a href="https://wordpress.org/plugins/charts-for-tablepress-chartist/">TablePress plugin extension</a>).</p>
<div>It makes a responsive chart, with an optional accessible table (hidden by default, but displayed on this example, to show the values).</div>
<div></div>
<div>Check out the CodePen attached to this post. You can interact with the chart by clicking on the legend labels to toggle the series on/off.</div>
<div></div>
<div>After a chart is set up, the only values a user would need to modify are the data variables at the top of the JS: labels and series. If the y-axis series values change, they would have to modify axisY values for ticks, high/low. The remainder of the JS is display parameters and accessibility options.</div>
<div></div>
<hr />
<p><p class='codepen'  data-height='688' data-theme-id='0' data-slug-hash='yMzKMQ' data-default-tab='js,result' data-animations='run' data-editable='' data-embed-version='2'>
See the Pen Chartist Graph with (visible) accessibility, point label, legend and axis label plugins: CCTN by utcwebdev (@utcwebdev) on CodePen.</p>
</p>
<p>&nbsp;</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/responsive-accessible-charts-graphs/">Responsive and Accessible Charts and Graphs</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/portfolio/responsive-accessible-charts-graphs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>YouTube Gallery snippet &#038; table transform for OU Campus</title>
		<link>https://chrisgilligan.com/consulting/youtube-gallery-snippet-table-transform-ou-campus/</link>
					<comments>https://chrisgilligan.com/consulting/youtube-gallery-snippet-table-transform-ou-campus/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Wed, 02 Mar 2016 18:20:55 +0000</pubDate>
				<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[OU Campus]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2401</guid>

					<description><![CDATA[<p>Here&#8217;s a neat way to present multiple YouTube videos in a responsive &#8220;gallery&#8221; in OU Campus. This example uses a mix of Bootstrap CSS and CSS specific to the gallery. Thanks to Wooster Web Design for the HTML/CSS/JS. With the YouTube Gallery snippet and XSL transform, you can create a video gallery of multiple YouTube [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/consulting/youtube-gallery-snippet-table-transform-ou-campus/">YouTube Gallery snippet &#038; table transform for OU Campus</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2016/03/screen-shot-2016-03-02-at-1.13.28-PM.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p>Here&#8217;s a neat way to <a href="http://www.utc.edu/university-web-services/advanced/youtube-gallery.php" target="_blank">present multiple YouTube videos in a responsive &#8220;gallery&#8221;</a> in OU Campus. This example uses a mix of Bootstrap CSS and CSS specific to the gallery. Thanks to <a href="http://www.woosterwebdesign.com/responsive-youtube-player-with-playlist/" target="_blank">Wooster Web Design</a> for the HTML/CSS/JS.</p>
<p>With the YouTube Gallery snippet and XSL transform, you can create a video gallery of multiple YouTube videos, selectable by clicking thumbnail images.</p>
<p>Here&#8217;s the table transform snippet (add HTML to /_resources/ou/snippets, then create new item in Content &gt; Snippets).</p>
<pre class="theme:monokai lang:default decode:true" title="YouTube Gallery table transform snippet">&lt;table class="ou-youtube-gallery transform" style="width: 100%;"&gt;
	&lt;caption&gt;YouTube Gallery Table&lt;/caption&gt;
	&lt;thead&gt;
		&lt;tr&gt;
			&lt;th width="30%"&gt;Title&lt;/th&gt;
			&lt;th&gt;YouTube ID (code after "watch?v=" e.g. G4RT-prDbIw in youtube.com/watch?v=G4RT-prDbIw or youtu.be/G4RT-prDbIw)&lt;/th&gt;
		&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;td&gt;
			My YouTube Video
			&lt;/td&gt;
			&lt;td&gt;
			G4RT-prDbIw
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;
			Another YouTube Video
			&lt;/td&gt;
			&lt;td&gt;
			o5ZymO9UgjM
			&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;br /&gt;
</pre>
<p>Here&#8217;s the XSL template match; this belongs in an XSL file such as common.xsl or interior.xsl.</p>
<pre class="theme:monokai lang:default decode:true " title="XSL template match for YouTube Gallery snippet">&lt;!-- transform YouTube Gallery --&gt;
&lt;xsl:template match="table[contains(@class, 'ou-youtube-gallery')]"&gt;
	&lt;xsl:variable name="id" select="position()" /&gt;
  	&lt;style type="text/css"&gt;
		@import url(//www.yourdomain.edu/_resources/css/youtube-gallery.css);
  	&lt;/style&gt;
	&lt;script type="text/javascript" src="/_resources/js/youtube-gallery.js?x25141" /&gt;

	&lt;div class="well"&gt;
		&lt;!-- THE YOUTUBE PLAYER --&gt;
		&lt;div class="vid-container"&gt;
			&lt;iframe id="vid_frame{$id}" frameborder="0" width="560" height="315"&gt;
				&lt;xsl:attribute name="src"&gt;https://www.youtube.com/embed/&lt;xsl:value-of select="./tbody/tr[1]/td[2]//text()"/&gt;?rel=0&amp;amp;showinfo=0&amp;amp;autohide=1&lt;/xsl:attribute&gt;
			&lt;/iframe&gt;
		&lt;/div&gt;

		&lt;!-- THE PLAYLIST --&gt;
		&lt;div class="vid-list-container"&gt;
			&lt;div class="vid-list"&gt;

				&lt;xsl:for-each select="./tbody/tr"&gt;
					&lt;div class="vid-item" onclick="document.getElementById('vid_frame{$id}').src='https://youtube.com/embed/{td[2]//text()}?autoplay=1&amp;amp;rel=0&amp;amp;showinfo=0&amp;amp;autohide=1'"&gt;

						&lt;div class="thumb"&gt;&lt;img alt="video thumbnail" src="https://img.youtube.com/vi/{td[2]//text()}/0.jpg" /&gt;&lt;/div&gt;

						&lt;div class="desc"&gt;&lt;xsl:value-of select="td[1]//text()" /&gt;&lt;/div&gt;

					&lt;/div&gt;
				&lt;/xsl:for-each&gt;

			&lt;/div&gt;&lt;!--/vid-list--&gt;
		&lt;/div&gt;&lt;!--/vid-container--&gt;

		&lt;!-- LEFT AND RIGHT ARROWS --&gt;
		&lt;div class="arrows"&gt;
			&lt;div class="arrow-left"&gt;&lt;i class="icon-chevron-left icon-large"&gt;&lt;!--scroll left--&gt;&lt;/i&gt;&lt;/div&gt;
			&lt;div class="arrow-right"&gt;&lt;i class="icon-chevron-right icon-large"&gt;&lt;!--scroll right--&gt;&lt;/i&gt;&lt;/div&gt;
		&lt;/div&gt;

	&lt;/div&gt;
&lt;/xsl:template&gt;
</pre>
<p>And here are the .js for scrolling and .css for styling</p>
<pre class="theme:monokai lang:js decode:true " title=".js for scrolling">//www.woosterwebdesign.com/responsive-youtube-player-with-playlist/

$(document).ready(function () {
		    $(".arrow-right").bind("click", function (event) {
		        event.preventDefault();
		        $(".vid-list-container").stop().animate({
		            scrollLeft: "+=336"
		        }, 750);
		    });
		    $(".arrow-left").bind("click", function (event) {
		        event.preventDefault();
		        $(".vid-list-container").stop().animate({
		            scrollLeft: "-=336"
		        }, 750);
		    });
		});</pre>
<pre class="theme:monokai lang:css decode:true ">/* styles responsive YouTube Gallery with scrolling thumbnails */
/** /www.woosterwebdesign.com/responsive-youtube-player-with-playlist/ **/

/*  VIDEO PLAYER CONTAINER
############################### */
.vid-container {
	position: relative;
	padding-bottom: 52%;
	padding-top: 30px; 
	height: 0; 
}

.vid-container iframe,
.vid-container object,
.vid-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*  VIDEOS PLAYLIST 
############################### */
.vid-list-container {
	width: 92%;
	overflow: hidden;
	margin-top: 20px;
	margin-left:4%;
	padding-bottom: 20px;
}

.vid-list {
	width: 3680px;
	position: relative;
	top:0;
	left: 0;
}

.vid-item {
	display: block;
	width: 148px;
	height: 148px;
	float: left;
	margin: 0;
	padding: 10px;
}

.thumb {
	/*position: relative;*/
	overflow:hidden;
	height: 84px;
}

.thumb img {
	width: 100%;
	position: relative;
	top: -13px;
}

.vid-item .desc {
	color: #21A1D2;
	font-size: 15px;
	margin-top:5px;
}

.vid-item:hover {
	background: #eee;
	cursor: pointer;
}

.arrows {
	position:relative;
	width: 100%;
}

.arrow-left {
	color: #fff;
	position: absolute;
	background: #777;
	padding: 15px;
	left: -25px;
	top: -130px;
	z-index: 99;
	cursor: pointer;
}

.arrow-right {
	color: #fff;
	position: absolute;
	background: #777;
	padding: 15px;
	right: -25px;
	top: -130px;
	z-index:100;
	cursor: pointer;
}

.arrow-left:hover {
	background: #CC181E;
}

.arrow-right:hover {
	background: #CC181E;
}


@media (max-width: 624px) {
	body {
		margin: 15px;
	}
	.caption {
		margin-top: 40px;
	}
	.vid-list-container {
		padding-bottom: 20px;
	}

	/* reposition left/right arrows */
	.arrows {
		position:relative;
		margin: 0 auto;
		width:96px;
	}
	.arrow-left {
		left: 0;
		top: -17px;
	}

	.arrow-right {
		right: 0;
		top: -17px;
	}
}
</pre>
<p>&#8230;and, finally, some instructions for use:</p>
<blockquote><p>Click the Insert Snippet button, then choose category Video/Embedded Media &gt; YouTube Gallery</p>
<p>This will insert a table in which you enter Title and YouTube ID for each video. This creates a gallery as shown below. To insert additional videos, click the cursor on a table row, then click the Table button, and choose Row &gt; Insert Row Before (or after), then enter the additional title and ID.</p></blockquote>
<p>&nbsp;</p>
<p>The post <a href="https://chrisgilligan.com/consulting/youtube-gallery-snippet-table-transform-ou-campus/">YouTube Gallery snippet &#038; table transform for OU Campus</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/consulting/youtube-gallery-snippet-table-transform-ou-campus/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Integrating Content from External Sources into OU Campus Using RSS, PHP, and JavaScript</title>
		<link>https://chrisgilligan.com/consulting/integrating-content-from-external-sources-into-ou-campus-using-rss-php-and-javascript/</link>
					<comments>https://chrisgilligan.com/consulting/integrating-content-from-external-sources-into-ou-campus-using-rss-php-and-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Tue, 23 Feb 2016 00:50:35 +0000</pubDate>
				<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[OU Campus]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2386</guid>

					<description><![CDATA[<p>The web team of the University of Tennessee at Chattanooga&#160;uses PHP and RSS to syndicate blog content, news releases, and calendar events into their main website. PHP SimpleXML is used to parse the XML of the RSS feeds. We import a variety of feeds, from WordPress, from Master Calendar, and from other sites such as [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/consulting/integrating-content-from-external-sources-into-ou-campus-using-rss-php-and-javascript/">Integrating Content from External Sources into OU Campus Using RSS, PHP, and JavaScript</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2016/02/screen-shot-2016-02-22-at-4.45.18-PM.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p><strong>The web team of the University of Tennessee at Chattanooga</strong>&nbsp;uses PHP and RSS to syndicate blog content, news releases, and calendar events into their main website.</p>
<p><a href="http://php.net/manual/en/book.simplexml.php" target="_blank" rel="noopener noreferrer">PHP SimpleXML</a> is used to parse the XML of the RSS feeds. We import a variety of feeds, from WordPress, from Master Calendar, and from other sites such as an external athletics CMS. WordPress provides some RSS features, including RSS from categories, tags and search strings, but we have added media attachments and a customized template to output a more complicated RSS feed on the University home page.</p>
<ul>
<li><em>this is a companion blog post for a <a href="https://s3.amazonaws.com/cgilligan-share/OUTC16-presentation-chris-gilligan-php-rss-ou-campus.pdf">presentation</a> given at<br />
<a href="https://www.outc16.com" target="_blank" rel="noopener noreferrer">OmniUpdate OU Campus User Training Conference 2016</a></em></li>
<li><em>shortcut to this blog post:&nbsp;<a href="http://utc.edu/outc16">utc.edu/outc16</a></em></li>
<li><em>links below are production&nbsp;examples of the concepts outlined in this post</em></li>
</ul>
<h2>News releases, events and content from WordPress via RSS</h2>
<p>Example web pages:</p>
<ul>
<li><a href="http://www.utc.edu/sustainability/" target="_blank" rel="noopener noreferrer">OU Campus PHP page with news feed and events feed from WordPress</a></li>
<li><a href="http://www.utc.edu/athletics/" target="_blank" rel="noopener noreferrer">OU Campus PHP page with news feed from SideArm Sports</a></li>
</ul>
<h3>WordPress plugin &amp; PHP to add media attachments to RSS feed</h3>
<p>Example RSS feeds <em>(view XML/XSL styled page in FireFox; View Source to see XML structure, namespaces, node names and structure)</em>:</p>
<ul>
<li><a href="http://watoosa.com/feed/" target="_blank" rel="noopener noreferrer">normal WordPress RSS feed</a></li>
<li><a href="http://blog.utc.edu/news/headlines.xml/" target="_blank" rel="noopener noreferrer">customized WordPress feed with additional namespace and media attachments</a>
<ul>
<li>headlines-customfeed.php&nbsp;<em>(custom feed template)</em></li>
<li>functions.php: load_template&nbsp;<em>(registers and loads the custom feed template)</em></li>
</ul>
</li>
<li><a href="http://gomocs.com/rss.aspx" target="_blank" rel="noopener noreferrer">RSS feed with inline images</a>&nbsp;<em>(open in Firefox to see XML &amp; XSL)</em></li>
</ul>
<p>Custom WordPress RSS feed template, followed by the functions call to load and create it:</p>
<pre class="theme:monokai lang:php decode:true " title="custom-headlines.php goes in (child) template directory">&lt;?php
/*
Template Name: Custom Current Headlines Feed

*/

$numposts = 10;
$category_id = get_cat_ID('Current Headlines');

function custom_rss_date( $timestamp = null ) {
  $timestamp = ($timestamp==null) ? time() : $timestamp;
  echo date(DATE_RSS, $timestamp);
}

function custom_rss_text_limit($string, $length, $replacer = '&amp;hellip;') { 
  $string = strip_tags($string);
  if(strlen($string) &gt; $length) 
    return (preg_match('/^(.*)\W.*$/', substr($string, 0, $length+1), $matches) ? $matches[1] : substr($string, 0, $length)) . $replacer;   
  return $string; 
}

$posts = query_posts('cat='.$category_id.'&amp;showposts='.$numposts);

$lastpost = $numposts - 1;



header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true);
$more = 1;

echo '&lt;?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'&gt;'; ?&gt;

&lt;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/"
	&lt;?php do_action('rss2_ns'); ?&gt;
&gt;

&lt;channel&gt;
	&lt;title&gt;&lt;?php bloginfo_rss('name'); wp_title_rss(); ?&gt;&lt;/title&gt;
	&lt;atom:link href="&lt;?php self_link(); ?&gt;" rel="self" type="application/rss+xml" /&gt;
	&lt;link&gt;&lt;?php bloginfo_rss('url') ?&gt;&lt;/link&gt;
	&lt;description&gt;&lt;?php bloginfo_rss("description") ?&gt;&lt;/description&gt;
	&lt;lastBuildDate&gt;&lt;?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?&gt;&lt;/lastBuildDate&gt;
	&lt;language&gt;&lt;?php bloginfo_rss( 'language' ); ?&gt;&lt;/language&gt;
	&lt;sy:updatePeriod&gt;&lt;?php echo apply_filters( 'rss_update_period', 'hourly' ); ?&gt;&lt;/sy:updatePeriod&gt;
	&lt;sy:updateFrequency&gt;&lt;?php echo apply_filters( 'rss_update_frequency', '1' ); ?&gt;&lt;/sy:updateFrequency&gt;
	&lt;?php do_action('rss2_head'); ?&gt;
	&lt;?php while( have_posts()) : the_post(); ?&gt;
	&lt;item&gt;
		&lt;title&gt;&lt;?php the_title_rss() ?&gt;&lt;/title&gt;
		&lt;link&gt;&lt;?php the_permalink_rss() ?&gt;&lt;/link&gt;
		&lt;comments&gt;&lt;?php comments_link_feed(); ?&gt;&lt;/comments&gt;
		&lt;pubDate&gt;&lt;?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?&gt;&lt;/pubDate&gt;
		&lt;dc:creator&gt;&lt;?php the_author() ?&gt;&lt;/dc:creator&gt;
&lt;?php the_category_rss('rss2') ?&gt;
		&lt;guid isPermaLink="false"&gt;&lt;?php the_guid(); ?&gt;&lt;/guid&gt;
&lt;?php if (get_option('rss_use_excerpt')) : ?&gt;
		&lt;description&gt;&lt;![CDATA[&lt;?php get_the_excerpt(); ?&gt;]]&gt;&lt;/description&gt;
&lt;?php else : ?&gt;
		&lt;description&gt;&lt;?php echo '&lt;![CDATA['.custom_rss_text_limit($post-&gt;post_content, 256).']]&gt;';  ?&gt;&lt;/description&gt;
&lt;?php $content = get_the_content_feed('rss2'); ?&gt;
	&lt;?php if ( strlen( $content ) &gt; 0 ) : ?&gt;
		&lt;content:encoded&gt;&lt;![CDATA[&lt;?php echo $content; ?&gt;]]&gt;&lt;/content:encoded&gt;
	&lt;?php else : ?&gt;
		&lt;content:encoded&gt;&lt;![CDATA[&lt;?php the_excerpt(); ?&gt;]]&gt;&lt;/content:encoded&gt;
	&lt;?php endif; ?&gt;
&lt;?php endif; ?&gt;
		&lt;wfw:commentRss&gt;&lt;?php echo esc_url( get_post_comments_feed_link(null, 'rss2') ); ?&gt;&lt;/wfw:commentRss&gt;
		&lt;slash:comments&gt;&lt;?php echo get_comments_number(); ?&gt;&lt;/slash:comments&gt;
&lt;?php rss_enclosure(); ?&gt;
&lt;?php do_action('rss2_item'); ?&gt;
		&lt;/item&gt;
	&lt;?php endwhile; ?&gt;
&lt;/channel&gt;
&lt;/rss&gt;
</pre>
<pre class="theme:monokai lang:php decode:true " title="goes in functions.php to load the custom feed">/* Custom RSS Feed for Home Page headlines */

function create_my_customfeed() {
load_template( get_stylesheet_directory() . '/headlines-customfeed.php');
}
add_action('do_feed_headlines', 'create_my_customfeed', 10, 1);
</pre>
<h3>OU Campus PHP helper file and code asset</h3>
<p>To parse an existing external RSS feed, such as a standard or custom WordPress feed, we use a helper file that employs PHP&#8217;s simplexml_load_string to load the targeted RSS feed, traverse the XML document, select node content, then echo out a block of styled html for each set of targeted XML nodes. The helper file accepts&nbsp;the $feed variable to specify the location of the targeted feed, and the $maxitems variable to specify the number of items to select from the top of the that feed.</p>
<p>On its own, the PHP helper file can be hit in a browser, to verify the targeted feed type exists and is parsed correctly. The browser will return an un-styled&nbsp;html page from the helper file URL.</p>
<p>The OU Campus Code Asset includes the helper file, over-rides the helper&#8217;s default variables, is and is very simple to copy and modify, according to the intended target feed and desired number of items to be presented on the final page. Many different Assets can include a single helper file.</p>
<p><em>(Vinit from OmniUpdate outlined a much better way to handle the feed URL and number of items in his Server Side Scripting class: via PCF Page Parameters.)</em></p>
<h3>PHP file</h3>
<ul>
<li><a href="http://www.utc.edu/_resources/php/get-headlines-gomocs.php" target="_blank" rel="noopener noreferrer">parses feed and displays HTML</a>
<ul>
<li>variables set to defaults for testing
<ul>
<li>may need to verify feed access and XML structure</li>
</ul>
</li>
</ul>
</li>
<li>various types of display html
<ul>
<li>title, excerpt, thumbnail from WordPress</li>
<li>title only from WordPress</li>
<li>RSS feed with formatting or namespaces different&nbsp;from WordPress</li>
</ul>
</li>
</ul>
<pre class="theme:monokai lang:php decode:true" title="/_resources/get-headlines-sidebar.php">&lt;?php

$input = $_SERVER['QUERY_STRING'];
parse_str($input);

if (!isset($feed))//script or page property will choose which feed to display
	$feed = "http://blog.utc.edu/news/headlines.xml/";

if(!isset($maxitems))
	$maxitems = 3;

$file = file_get_contents($feed);
$file = str_ireplace('src="http://', 'src="//', $file);
$file = str_ireplace('media:content url="http://', 'media:content url="//', $file);
$file = str_ireplace('media:thumbnail url="http://', 'media:thumbnail url="//', $file);

$sxml = simplexml_load_string($file);

$i = 0;
	foreach ($sxml-&gt;channel-&gt;item as $item) {
		if (++$i &gt; $maxitems) {
				break;
			}
		$namespaces      = $item-&gt;getNameSpaces( true );
		$content         = isset($namespaces['content']) ? $item-&gt;children( $namespaces['content'] ) : '';
		$content_encoded = isset($content-&gt;encoded)      ? $content-&gt;encoded                         : '';
		$media           = isset($namespaces['media'])   ? $item-&gt;children( $namespaces['media'] )   : '';
		$html       = "&lt;div class=\"row-fluid\"&gt;"
					.     "&lt;h3&gt;&lt;a href=\"{$item-&gt;link}\"&gt;{$item-&gt;title}&lt;/a&gt;&lt;/h3&gt;"
					.     "{$content_encoded}"
					.  "&lt;/div&gt;";
	echo($html);
}
?&gt;
&lt;script&gt;
	$(document).ready(function(){
		$('.sidebar img').removeClass().addClass('thumbnail pull-right span5');
		$('aside.well img').removeClass().addClass('thumbnail pull-right span5');
	});
&lt;/script&gt;
</pre>
<h3>OU Campus Assets</h3>
<ul>
<li>simple structure
<ul>
<li>specify RSS source</li>
<li>number of posts to display</li>
</ul>
</li>
</ul>
<pre class="lang:php decode:true " title="OU Campus Asset">&lt;?php
$feed = "//blog.utc.edu/hr/category/benefits/feed/";
include($_SERVER['DOCUMENT_ROOT']. '/_resources/php/get-headlines-sidebar.php');
$maxitems = 5;
?&gt;</pre>
<p><em>(Vinit from OmniUpdate outlined a much better way to handle the feed URL and number of items in his Server Side Scripting class: via PCF Page Parameters.)</em></p>
<h3>More Speed</h3>
<p>After you verify the final production page, you should set up cron jobs for any external feeds that are created via database calls on the external servers. A&nbsp;WordPress feed will require a bit of PHP and MySQL work to generate the RSS feed. This requires some processing, and will introduce a delay in service of the OU Campus PHP page. To avoid this latency, we create cron jobs on the production server to periodically fetch the feeds and cache them locally on the production server. The speed increase for the final page product is noticeable.</p>
<p>If your OU Campus Sites include development, test, training, or mobile Sites, you will want to duplicate the local static feeds on all of the OU Sites.</p>
<p>If you control an external WordPress site, you can&nbsp;employ caching mechanisms or plugins to more efficiently serve RSS feeds.</p>
<ul>
<li>cache RSS feeds via WordPress plugin, e.g. W3 &nbsp;Total Cache</li>
<li>cron job to fetch feeds to local production servers</li>
<li>minimize external requests for faster page load</li>
</ul>
<p>This cron job can be placed in /etc/cron.hourly to fetch WordPress feeds, check <code>lastBuildDate</code>, and compare that to the existing build date, and create a cached RSS xml file.</p>
<pre class="theme:monokai lang:default decode:true" title="wget the feeds to local via cron">#!/bin/bash

# Preload WordPress Feeds for Website

# UTC News
wget http://blog.utc.edu/news/headlines.xml/ -O /data/web/prod/www/_resources/rss/wp-news.tmp &gt;/dev/null 2&gt;&amp;1
TMP_LASTBUILD="$(xml_grep '/rss/channel/lastBuildDate' --text_only /data/web/prod/www/_resources/rss/wp-news.tmp)"
XML_LASTBUILD="$(xml_grep '/rss/channel/lastBuildDate' --text_only /data/web/prod/www/_resources/rss/wp-news.xml)"
MIMETYPE=`file -b --mime-type /data/web/prod/www/_resources/rss/wp-news.tmp`
if [ "$MIMETYPE" == "application/xml" -a  "$TMP_LASTBUILD" != "$XML_LASTBUILD" ] ; then
    mv /data/web/prod/www/_resources/rss/wp-news.tmp /data/web/prod/www/_resources/rss/wp-news.xml
fi

# Duplicate for development, test &amp; training environments
cp -p /data/web/prod/www/_resources/rss/wp*.xml /data/web/test/www/_resources/rss/
cp -p /data/web/prod/www/_resources/rss/wp*.xml /data/web/test/train/_resources/rss/
cp -p /data/web/prod/www/_resources/rss/wp*.xml /data/web/dev/www/_resources/rss/
</pre>
<p>For other RSS sources, the structure may be different; maybe we can&#8217;t do a <code>lastBuildDate</code> check. And&#8230; some servers may not respond to a default wget request from a shell script. No problem: just specify <code>--header</code> and <code>--user-agent</code>, don&#8217;t do the <code>lastBuildDate</code> check, and just write the RSS XML file.</p>
<pre class="theme:monokai lang:default decode:true">#!/bin/bash

# Preload GoMocs Feeds for Website


# Gomocs.com News
wget  --header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0" http://www.gomocs.com/rss.aspx -O /data/web/prod/www/_resources/gomocs-news.xml

# Duplicate for development, test &amp; training environments
cp -p /data/web/prod/www/_resources/rss/gomocs*.xml /data/web/test/www/_resources/rss/
cp -p /data/web/prod/www/_resources/rss/gomocs*.xml /data/web/test/train/_resources/rss/
cp -p /data/web/prod/www/_resources/rss/gomocs*.xml /data/web/dev/www/_resources/rss/</pre>
<h2>Event Calendar RSS feeds from Master Calendar via RSS</h2>
<p>Example pages that include feeds from Master Calendar. MC has a very rudimentary RSS output of title, date/time and description. MC caches its RSS feeds by default, and expects a lot of traffic to the feed locations, so it is not so necessary to create cron jobs to fetch them. However, if you have an OU Campus page that fetches and displays a large number of MC feeds, you will see a performance increase by using cron jobs. UTC.edu&#8217;s home page fetches a number of feeds, and we saw a noticeably faster page load after moving these calls to cron jobs.</p>
<ul>
<li><a href="http://www.utc.edu/" target="_blank" rel="noopener noreferrer">home page tabbed calendar</a></li>
<li><a href="http://www.utc.edu/music/" target="_blank" rel="noopener noreferrer">simple sidebar calendar</a></li>
</ul>
<h2>Social Media Streams</h2>
<p><strong>UTC uses a jQuery plugin and PHP</strong>&nbsp;to pull in social media posts for the university account, as well as for individual departments and colleges. This is an easy way to create a social stream sidebar or social wall page.</p>
<ul>
<li><a href="http://codecanyon.net/item/jquery-social-stream/2103997" target="_blank" rel="noopener noreferrer">jQuery Social Stream</a></li>
<li><a href="http://www.utc.edu/read-achieve/" target="_blank" rel="noopener noreferrer">program site with Twitter feed</a></li>
<li><a href="http://www.utc.edu/" target="_blank" rel="noopener noreferrer">home page with multiple feeds in a sidebar stream</a></li>
<li><a href="http://www.utc.edu/mocs-news/" target="_blank" rel="noopener noreferrer">social wall page with YouTube videos</a></li>
</ul>
<p><em>Facebook, Twitter and Instagram require PHP &nbsp;API script for connection to signed apps.<a href="http://lulalake.org/" target="_blank" rel="noopener noreferrer">&nbsp;jquery.imagesloaded</a>&nbsp;is helpful for the wall display</em></p>
<h2>Code Samples</h2>
<p><em>(A compilation zip including all code mentioned in the presentation is available. Comment and subscribe to this post&nbsp;to be notified of updates.)</em></p>
<ul>
<li>WordPress plugin to add media attachments to RSS feed</li>
<li>WordPress functions.php changes</li>
<li>PHP files to parse feeds and display HTML</li>
<li>OU Campus Assets to specify RSS source and set number of posts</li>
<li>cron job to fetch RSS feeds to local server</li>
</ul>
<p>The post <a href="https://chrisgilligan.com/consulting/integrating-content-from-external-sources-into-ou-campus-using-rss-php-and-javascript/">Integrating Content from External Sources into OU Campus Using RSS, PHP, and JavaScript</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/consulting/integrating-content-from-external-sources-into-ou-campus-using-rss-php-and-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TEDx Event Website</title>
		<link>https://chrisgilligan.com/portfolio/tedx-event-website/</link>
					<comments>https://chrisgilligan.com/portfolio/tedx-event-website/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Wed, 04 Nov 2015 17:13:14 +0000</pubDate>
				<category><![CDATA[Arts and Nonprofit]]></category>
		<category><![CDATA[NginX]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Virtualmin]]></category>
		<category><![CDATA[Web Server Performance Tuning]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2342</guid>

					<description><![CDATA[<p>I&#8217;m very excited to help out with Chattanooga&#8217;s premier TEDx event: TEDxChattanooga. For this site, I chose a responsive Bootstrap 3 SASS WordPress theme, originally developed for TEDxToronto. I made a few tweaks and improvements to better fit our event, and worked with April Cox from UT Chattanooga to dial in&#160;the design and architecture. Developed&#160;on [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/tedx-event-website/">TEDx Event Website</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.46.47-AM.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p>I&#8217;m very excited to help out with Chattanooga&#8217;s premier TEDx event: <a href="https://www.tedxchattanooga.com/">TEDxChattanooga</a>.</p>
<p><div id="attachment_2346" style="width: 933px" class="wp-caption aligncenter"><a href="http://www.tedxchattanooga.com/"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-2346" class="size-large wp-image-2346" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.46.47-AM-923x1024.png?x25141" alt="TEDxChattanooga website screenshot" width="923" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.46.47-AM-923x1024.png?x25141 923w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.46.47-AM-270x300.png?x25141 270w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.46.47-AM.png?x25141 1378w" sizes="auto, (max-width: 923px) 100vw, 923px" /></a><p id="caption-attachment-2346" class="wp-caption-text">TEDxChattanooga website</p></div></p>
<p><a href="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.51.25-AM.png?x25141"><img loading="lazy" decoding="async" class="size-medium wp-image-2343 alignright" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.51.25-AM-177x300.png?x25141" alt="screen-shot 2015-11-04 at 11.51.25 AM" width="177" height="300" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.51.25-AM-177x300.png?x25141 177w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.51.25-AM-605x1024.png?x25141 605w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.51.25-AM.png?x25141 616w" sizes="auto, (max-width: 177px) 100vw, 177px" /></a>For this site, I chose a responsive Bootstrap 3 SASS WordPress theme, originally developed for TEDxToronto. I made a few tweaks and improvements to better fit our event, and worked with April Cox from UT Chattanooga to dial in&nbsp;the design and architecture. Developed&nbsp;on an Amazon EC2+Ubuntu+Webmin&nbsp;server running a Nginx+MySQL+PHP-FPM stack, the site&nbsp;should handle plenty of traffic, and can be scaled up to meet spikes in demand coinciding with the event.</p>
<p>Please check out <a href="http://www.tedxchattanooga.com/">TEDxChattanooga.com</a>!</p>
<p>Love Open Source software, but hate the generic&nbsp;branding? No problem. It&#8217;s very simple to create a fully-branded login&nbsp;screen for&nbsp;WordPress and Webmin/Virtualmin, to&nbsp;match a client&#8217;s logo and color scheme.</p>
<hr>
<p>&nbsp;</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-2344 size-medium" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.49.19-AM-283x300.png?x25141" alt="screen-shot 2015-11-04 at 11.49.19 AM" width="283" height="300" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.49.19-AM-283x300.png?x25141 283w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-11.49.19-AM.png?x25141 616w" sizes="auto, (max-width: 283px) 100vw, 283px" /></p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-2347 size-full" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.06.49-PM.png?x25141" alt="screen-shot 2015-11-04 at 12.06.49 PM" width="969" height="865" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.06.49-PM.png?x25141 969w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.06.49-PM-300x268.png?x25141 300w" sizes="auto, (max-width: 969px) 100vw, 969px" /></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2348" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.09.52-PM-1024x793.png?x25141" alt="screen-shot 2015-11-04 at 12.09.52 PM" width="1024" height="793" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.09.52-PM-1024x793.png?x25141 1024w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.09.52-PM-300x232.png?x25141 300w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2015/11/screen-shot-2015-11-04-at-12.09.52-PM.png?x25141 1061w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>The post <a href="https://chrisgilligan.com/portfolio/tedx-event-website/">TEDx Event Website</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/portfolio/tedx-event-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Land Trust Website with Events Calendar</title>
		<link>https://chrisgilligan.com/portfolio/land-trust-website-with-events-calendar/</link>
					<comments>https://chrisgilligan.com/portfolio/land-trust-website-with-events-calendar/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Wed, 14 Aug 2013 20:44:39 +0000</pubDate>
				<category><![CDATA[Arts and Nonprofit]]></category>
		<category><![CDATA[Organizations]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2043</guid>

					<description><![CDATA[<p>Lula Lake Land Trust needed a quick website update to replace a neglected site that had been dormant for years. I chose WordPress with a Bootstrap theme for quick and flexible development, and generated a color palette using the Lavish Bootstrap color scheme generator. This is a great example of a site that can come [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/land-trust-website-with-events-calendar/">Land Trust Website with Events Calendar</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.47.54-PM.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p><strong><a href="http://lulalake.org/">Lula Lake Land Trust</a> needed a quick website update</strong> to replace a neglected site that had been dormant for years. I chose WordPress with a <a href="http://strappress.com/">Bootstrap theme</a> for quick and flexible development, and generated a color palette using the <a href="http://lavishbootstrap.com/">Lavish Bootstrap color scheme generator</a>.</p>
<p>This is a great example of a site that can come together in mere days, look great, and function well on every device from desktop to tablet to smart phone.</p>
<p><div id="attachment_2044" style="width: 1034px" class="wp-caption aligncenter"><a href="http://lulalake.org/"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-2044" class="size-large wp-image-2044" alt="Lula Lake Land Trust website" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.33.11-PM-1024x969.png?x25141" width="1024" height="969" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.33.11-PM-1024x969.png?x25141 1024w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.33.11-PM-300x284.png?x25141 300w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.33.11-PM.png?x25141 1320w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a><p id="caption-attachment-2044" class="wp-caption-text">Lula Lake Land Trust website</p></div></p>
<p><a href="http://lulalake.org/"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-2047" alt="screen-shot 2013-08-14 at 4.47.54 PM" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.47.54-PM.png?x25141" width="396" height="744" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.47.54-PM.png?x25141 396w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/screen-shot-2013-08-14-at-4.47.54-PM-159x300.png?x25141 159w" sizes="auto, (max-width: 396px) 100vw, 396px" /></a></p>
<p>The post <a href="https://chrisgilligan.com/portfolio/land-trust-website-with-events-calendar/">Land Trust Website with Events Calendar</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/portfolio/land-trust-website-with-events-calendar/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>University Website and Blog Redesign</title>
		<link>https://chrisgilligan.com/portfolio/university-website-and-blog-redesign/</link>
					<comments>https://chrisgilligan.com/portfolio/university-website-and-blog-redesign/#respond</comments>
		
		<dc:creator><![CDATA[Chris Gilligan]]></dc:creator>
		<pubDate>Wed, 14 Aug 2013 18:03:46 +0000</pubDate>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://chrisgilligan.com/?p=2038</guid>

					<description><![CDATA[<p>This was a team project for the University of Tennessee at Chattanooga, my alma mater and current employer. I was hired by UTC as web development specialist in late 2012, and worked with a cross-discipline team on the redesign, information architecture, 10,000 page migration to CMS and user training for over 300 web editors. The [&#8230;]</p>
<p>The post <a href="https://chrisgilligan.com/portfolio/university-website-and-blog-redesign/">University Website and Blog Redesign</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="float: right; margin: 0 0 10px 15px; width:240px; height: auto;">
		<img src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/utc-edu-bootstrap-site.png?x25141" width="240" style="max-width: 100%; height: auto;" />
		</p><p>This was a team project for the <a href="http://utc.edu/">University of Tennessee at Chattanooga</a>, my <em>alma mater</em> and current employer. I was hired by UTC as web development specialist in late 2012, and worked with a cross-discipline team on the redesign, information architecture, 10,000 page migration to CMS and user training for over 300 web editors.</p>
<p>The design was built on <a href="http://getbootstrap.com/">Bootstrap</a>, a versatile framework that includes a flexible, responsive grid system, icon font, and <a href="http://lesscss.org/">LESS/CSS</a> styling for nearly any imaginable UI element. The site looks great on desktop, tablet and mobile phone; images are resized according to users&#8217; maximum screen width by <a href="http://adaptive-images.com">Adaptive Images</a>.</p>
<p style="text-align: center;"><a href="http://utc.edu/"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-2041img-thumbnail" alt="utc-edu-bootstrap-site" src="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/utc-edu-bootstrap-site-601x1024.png?x25141" width="601" height="1024" srcset="https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/utc-edu-bootstrap-site-601x1024.png?x25141 601w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/utc-edu-bootstrap-site-176x300.png?x25141 176w, https://d2lehxir4n36oh.cloudfront.net/wp-content/uploads/2013/08/utc-edu-bootstrap-site.png?x25141 1198w" sizes="auto, (max-width: 601px) 100vw, 601px" /></a></p>
<p>We worked with <a href="http://www.omniupdate.com/">OmniUpdate</a> to port the functional HTML templates to the OU Campus Content Management System.</p>
<p>A companion WordPress theme was created to retrofit the <a href="http://blog.utc.edu/">UTC Blogs</a> MultiSite. Enhanced WordPress RSS feeds in the media namespace populate news feeds on the home page.</p>
<h3>Deets for Devs</h3>
<p><div class="woo-sc-box  note   ">We’re using <a href="http://getbootstrap.com/2.3.2/">Bootstrap 2.3.2</a> with <a href="http://fontawesome.io/3.2.1/">Font Awesome 3.2.1</a> icons.</p>
<p>For initial HTML development, I used  <a href="http://getkickstrap.com">Kickstrap</a>.</p>
<p>I found a lot of great examples and code at  <a href="http://wrapbootstrap.com">WrapBootstrap</a> and <a href="http://bootsnip.com">Bootsnip</a>.</p>
<p>Our custom CSS files work for both the OU Campus site and WordPress blogs, because templates for both are built on Bootstrap… on WordPress, we use a child theme with a  <a href="http://bootswatch.com">BootSwatch style custom CSS</a>.</p>
<p>We host our own CSS, but pull fonts and JavaScript libraries from CDNs. Off-Canvas, drop-down sidenav was custom built using Bootstrap components, but now Jasny’s Bootstrap 3.0 fork (jasny.github.io/bootstrap) has a similar extension.</p>
<p>LESS Files: along with the entire <a href="http://mainandwilliams.net/">development site</a> (was easier to zip this way). <a href="https://drive.google.com/folderview?id=0B8InB6W8DuctdkNxTUtfUU9HT28&amp;usp=sharing">Download</a> &amp; unzip, it will run as a local site if you like…</p>
<p>Start with kickstrap.less, see what it includes — mostly the standard Bootstrap LESS files. Next look at theme.less, which jumps to Kickstrap/themes/utcms/theme.less, which has all of the custom stuff and some comments. Read the comments and then look at the individual files to see what’s going on: basically, anything that’s commented out uses the base Bootstrap CSS. At some point, I would like to change this workflow to pull the standard Bootstrap CSS from a CDN, and only load the override CSS.</p>
<p>Most of our specific changes are in variables.less, navbar.less, main.less (final custom overrides and tweaks) and logotype.less (for the header). I used CODA as an IDE, with <a href="http://incident57.com">CodeKit</a> as my LESS compiler.</div></p>
<div></div>
<p>The post <a href="https://chrisgilligan.com/portfolio/university-website-and-blog-redesign/">University Website and Blog Redesign</a> appeared first on <a href="https://chrisgilligan.com">Chris Gilligan » new media</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://chrisgilligan.com/portfolio/university-website-and-blog-redesign/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Page Caching using Disk: Enhanced 
Content Delivery Network via Amazon Web Services: CloudFront: d2lehxir4n36oh.cloudfront.net
Lazy Loading (feed)

Served from: chrisgilligan.com @ 2026-06-19 14:45:03 by W3 Total Cache
-->