<?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>friiitz :: design</title>
	<atom:link href="http://www.friiitz.de/friiitzdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.friiitz.de/friiitzdesign</link>
	<description>photography &#38; webdesign</description>
	<lastBuildDate>Sat, 15 Oct 2011 16:56:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>jQuery Accordion</title>
		<link>http://www.friiitz.de/friiitzdesign/jquery-accordion/</link>
		<comments>http://www.friiitz.de/friiitzdesign/jquery-accordion/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 20:00:43 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[shortcodes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.friiitz.de/friiitzdesign/?p=562</guid>
		<description><![CDATA[For a very long time, I&#8217;ve been using a snippet of code for accordion sections on a website. About a year ago, I wrote a little shortcode function for it to make changes in the WordPress backend easier for people who are not familiar with HTML. But I always was a little annoyed that this &#8230;]]></description>
			<content:encoded><![CDATA[<p>For a very long time, I&#8217;ve been using a snippet of code for accordion sections on a website. About a year ago, I wrote a little shortcode function for it to make changes in the WordPress backend easier for people who are not familiar with HTML. But I always was a little annoyed that this jQuery-powered accordion menu uses <em>&lt;h#&gt;</em>-tags as a trigger for the jQuery effect.</p>
<p>This is how the output code looked like before:</p>
<pre class="brush: html; gutter: true; first-line: 1">&lt;h1&gt;Some title&lt;/h1&gt;
&lt;div class="accordion-content"&gt;Some text.&lt;/div&gt;</pre>
<p>With the latest redesign of one of my projects, I thought of a far better way to solve this issue. Now, the reusable accordion menu code is completely customizable with the WordPress editor and CSS.</p>
<p>Let&#8217;s start with the HTML. This is what we want the shortcode to produce.</p>
<pre class="brush: html; gutter: true; first-line: 1">&lt;div class="accordion-title"&gt;
	&lt;h1&gt;Some title&lt;/h1&gt;
&lt;/div&gt;
&lt;div class="accordion-content"&gt;Some text.&lt;/div&gt;</pre>
<p>I am still using an <em>&lt;h#&gt;</em>-tag in the code, but now it is wrapped in a <em>div</em> with a class of <em>accordion-title</em>. This means that in the jQuery code, we now can target the <em>div</em> instead of the specific <em>&lt;h#&gt;</em>-tag.</p>
<p>Let&#8217;s now look at the code inside the accordion.js file.</p>
<pre class="brush: javascript; gutter: true; first-line: 1">jQuery(document).ready(function($){

    var expandhide_text = '&lt;span&gt; &lt;/span&gt;';
    $('.accordion-content').hide().prev().append(expandhide_text).addClass('accordionhidden');

    $('.accordion-title').click(function() {
        $(this).toggleClass('accordionvisible').toggleClass('accordionhidden').next().toggle();
        return false;
    });

});</pre>
<p>This code is what&#8217;s left from the one I used in earlier projects. First, the variable <em>expandhide_text</em> is defined as a <em>span</em> with a non-breaking space as content. In the example, this <em>span</em> is basically only used to place the little black triangle and change between the one pointing down when the content is hidden and the one pointing left when the content is displayed. The following code first hides the content (when the page is loaded) and applies a class of <em>accordionhidden</em> to the content. Then, on a click event on the <em>div</em> with a class of <em>accordion-title</em> (the one with the <em>&lt;h#&gt;</em>-tag inside), the content is made visible and the class of <em>accordionhidden</em> is exchanged by the class <em>accordionvisible</em>. When the <em>accordion-title div</em> is clicked again, the classes for the content are swapped again and the content is invisible.</p>
<p>So how are we going to achieve to make this work with WordPress-backend customizable shortcodes? It&#8217;s not very difficult either. The following code goes into the <em>functions.php</em> file in your theme folder.</p>
<pre class="brush: php; gutter: true; first-line: 1">//Shortcode for accordion
function accordion( $atts, $content = null ) {
	extract(shortcode_atts(array(
		'hclass' =&gt; '3',
		'title' =&gt; 'This is the accordion header',
	), $atts));

return '&lt;div&gt;&lt;h' .$hclass. '&gt;' . do_shortcode($title) . '&lt;/h' .$hclass. '&gt;&lt;/div&gt;&lt;div&gt;' . do_shortcode($content) . '&lt;/div&gt;';
}
add_shortcode('accordion', 'accordion');</pre>
<p>If you&#8217;re not very familiar with what&#8217;s happening in this code, I will explain it to you. First, you define the function accordion and attach an array of attributes to it. There are two attributes: <em>hclass</em> and <em>title</em>. <em>hclass</em> defines which header tag will go inside the <em>accordion-header div</em> (hclass = # in &lt;h#&gt;). This attibute has an  arbitrary default value of 3. The title attribute, which defaults to &#8220;This is the accordion header&#8221;, specifies the title of the accordion in the shortcode. The shortcode outputs everything that is wrapped in return &#8216;&#8230;&#8217;;</p>
<p><em>.$hclass.</em> returns the value hclass value &#8211;&gt; e.g. hclass=&#8221;2&#8243; returns <em>&lt;h2&gt;</em> and <em>&lt;/h2&gt;</em></p>
<p><em>.do_shortcode($title).</em> returns the title value &#8211;&gt; e.g. title=&#8221;Fancy Accordion&#8221;</p>
<p><em>.do_shortcode($content).</em> returns everything that is places between [accordion] and [/accordion]</p>
<p>What&#8217;s the difference between <em>.$content.</em> and <em>.do_shortcode($content).</em>? If you only use one shortcode in your post, then there is no difference between those two. If you, however, want to nest multiple shortcodes, then you have to add the <em>do_shortcode()</em> bit to the attribute in the return section of the code. If you want to read more about this, please go to the <a title="Function Reference/do shortcode" href="http://codex.wordpress.org/Function_Reference/do_shortcode" target="_blank">function Reference/do shortcode</a> of the WordPress codex.</p>
<p>We&#8217;re almost there. The only thing that&#8217;s still missing is the necessary CSS.</p>
<pre class="brush: css; gutter: true; first-line: 1">.accordion-title {
    cursor: pointer;
    position: relative;
    border-top: 1px solid #333;
    background: #eee;
}
.accordion-title:hover { color: #C2125E; }
.accordion-title .accordionhidden .expand { display: inline; }
.accordion-title .accordionhidden .hide { display: none; }
.accordion-title .accordionvisible .expand { display: none; }
.accordion-title .accordionvisible .hide { display: inline; }
.accordionhidden span, .accordionvisible span {
    position: absolute;
    right: 3%;
    top: 35%;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
}
.accordionhidden span { background: transparent url(images/triangle-down.png) no-repeat; }
.accordionvisible span { background: transparent url(images/triangle-left.png) no-repeat; }
.accordion-content {
    font: normal normal normal 1em/1.4em Arial, sans-serif;
    color: #333;
    margin: 10px 0 10px 8px;
}</pre>
<p>The styling is of course completely up to you. Only the styles for <em>accordionhidden</em> and <em>accordionvisible</em> shouldn&#8217;t be changed as they define when the content is visible and when not.</p>
<p>So go ahead and use the code on your own site and customize it to your needs. This was my first post of this kind and I hope you liked it. Leave me a comment below and tell me what you think. I&#8217;ll be happy to further improve the accordion. Thank you for reading!</p>
<div class="divider">&nbsp;</div>
<span class="demo-link"></span><a href="http://www.friiitz.de/friiitzdesign/examples/jquery-accordion/" target="_blank">View Demo</a> <span class="download-link"></span><a href="http://www.friiitz.de/friiitzdesign/examples/jquery-accordion/jquery-accordion_friiitzdesign.zip">Download Source</a> | Tested in <span class="firefox-icon" title="Firefox 6"></span> <span class="chrome-icon" title="Chrome 13"></span> <span class="safari-icon" title="Safari 5"></span> <span class="ie9-icon" title="IE 9"></span>
<div class="divider">&nbsp;</div>
<h6>References</h6>
<ul>
<li><a title="Expand/Hide accordion feature explained" href="http://tobias.baethge.com/2009/07/expandhide-accordion-feature-explained/" target="_blank">Expand/Hide accordion feature explained</a> / tobias.baethge.com</li>
<li><a title="Accordion Madness" href="http://www.learningjquery.com/2007/03/accordion-madness" rel="bookmark" target="_blank">Accordion Madness</a> / learningjquery.com</li>
<li><a title="Wordpress shortcode API" href="http://codex.wordpress.org/Shortcode_API" target="_blank">WordPress shortcode API</a> / wordpress.org</li>
<li><a title="Function Reference/do shortcode" href="http://codex.wordpress.org/Function_Reference/do_shortcode" target="_blank">Function Reference/do shortcode</a> / wordpress.org</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/jquery-accordion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tribute to Lyttelton</title>
		<link>http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/</link>
		<comments>http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 19:48:50 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[christchurch]]></category>
		<category><![CDATA[earthquake]]></category>
		<category><![CDATA[tilt shift]]></category>

		<guid isPermaLink="false">http://www.friiitz.de/friiitzdesign/?p=519</guid>
		<description><![CDATA[Lyttelton is a small town south-east of Christchurch &#8211; New Zealands second-largest city. The northern part of the Port Hills draw a natural barrier between Christchurch and Lyttelton. The small town is economically very important to Christchurch and the South Island because its harbour is a major trans-shipment centre for lumber and fuel. Lyttelton Harbour &#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Lyttelton is a small town south-east of Christchurch &#8211; New Zealands second-largest city. The northern part of the Port Hills draw a natural barrier between Christchurch and Lyttelton. The small town is economically very important to Christchurch and the South Island because its harbour is a major trans-shipment centre for lumber and fuel. <span id="more-519"></span>Lyttelton Harbour is also the port of destination for large cruise ships coming to the eastern shore of New Zealand&#8217;s South Island (besides Dunedin). In the early days of trade, all good had to be hauled over the Port Hills. Since 1867 a railway tunnel (New Zealand&#8217;s oldest by the way) connects the city with the port. In 1964, the road tunnel was opened.</p>
<p style="text-align: justify;">During <a title="New Zealand blog" href="http://www.friiitz.de/friiitzdesign/new-zealand-blog/">my 2010 study-abroad semester at the University of Canterbury</a> in Christchurch, I took a bus into Lyttelton and hiked via Lyttelton Scenic Reserve and Bridle Path back to the Christchurch Gondola Station on the city side of the Port Hills. On that day, I took the pictures below to which I later applied a tilt shift effect with Photoshop. This article is titled &#8220;Tribute to Lyttelton&#8221; for a good reason.</p>
<p style="text-align: justify;">On September 4th, 2010 at 4:35 am local time, the Canterbury region was struck by a <a title="2010 Canterbury earthquake" href="http://en.wikipedia.org/wiki/2010_Canterbury_earthquake" target="_blank">7.1 magnitude earthquake</a>. Despite widespread damage in Christchurch and the surrounding area, luckily, there were no fatalities to report which were directly related to the earthquake. Authorities said that this was mainly due to the time the quake hit &#8211; most people were off the streets asleep at their homes. Aftershocks continued to rattle the Canterbury region and especially Christchurch and its suburbs.</p>
<p style="text-align: justify;">The largest aftershock so far &#8211; and I hope it won&#8217;t get worse &#8211; happened on Feburary 22, 2011 when a <a title="February 2011 Christchurch earthquake" href="http://en.wikipedia.org/wiki/February_2011_Christchurch_earthquake" target="_blank">magnitude 6.3 earthquake</a> struck the Canterbury region at 12:51 pm. It was centred 2 kilometres west of the town of Lyttelton, and 10 kilometres south-east of the centre of Christchurch. Unfortunately, this aftershock hit the city in the middle of a busy working day. Many (historic) buildings in the CBD and Christchurch&#8217;s suburbs were damaged beyond repair or completely collapsed. Sadly, 181 people lost their lives.</p>
<p style="text-align: justify;">Another <a title="June 2011 Christchurch earthquake" href="http://en.wikipedia.org/wiki/June_2011_Christchurch_earthquake" target="_blank">magnitude 6.3 earthquake</a> rattled the shaken city of Christchurch on June 13, 2011 at 2:20 pm. It destroyed some buildings and caused additional damage to many structures affected by previous earthquakes. After the spire of the Christchurch Cathedral collapsed in the previous quake, the tower of Lyttelton&#8217;s famous timeball station was destroyed completely in this one. A number of people suffered injuries but nobody died in direct relation to the earthquake.</p>
<p style="text-align: justify;">I&#8217;m feeling very lucky to have been able to visit this great place in all its pre-quake beauty. I left New Zealand in mid July 2010, just a little over a month before the first quake. Without knowing it, this was a lucky &#8220;escape&#8221; because what&#8217;s a month in the perspective hundreds, thousands, millions of years of tectonic activity? Despite all this, some day I will definitely go back to this amazing place &#8211; shaky or not, it doesn&#8217;t matter.</p>

<a href='http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/lyttelton_tilt-shift_01/' title='Tilt Shift Effect - Panorama of Lyttelton, New Zealand'><img width="150" height="150" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lyttelton_tilt-shift_01-150x150.jpg" class="attachment-thumbnail colorbox-519" alt="Tilt Shift Effect - Panorama of Lyttelton, New Zealand" title="Tilt Shift Effect - Panorama of Lyttelton, New Zealand" /></a>
<a href='http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/lyttelton_tilt-shift_02/' title='Tilt Shift Effect - Residential area of Lyttelton, New Zealand '><img width="150" height="150" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lyttelton_tilt-shift_02-150x150.jpg" class="attachment-thumbnail colorbox-519" alt="Tilt Shift Effect - Residential area of Lyttelton, New Zealand" title="Tilt Shift Effect - Residential area of Lyttelton, New Zealand" /></a>
<a href='http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/lyttelton_tilt-shift_03/' title='Tilt Shift Effect - Freight harbour of Lyttelton, New Zealand '><img width="150" height="150" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lyttelton_tilt-shift_03-150x150.jpg" class="attachment-thumbnail colorbox-519" alt="Tilt Shift Effect - Freight harbour of Lyttelton, New Zealand" title="Tilt Shift Effect - Freight harbour of Lyttelton, New Zealand" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miniature Salzburg</title>
		<link>http://www.friiitz.de/friiitzdesign/miniature-salzburg/</link>
		<comments>http://www.friiitz.de/friiitzdesign/miniature-salzburg/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 12:35:08 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[Salzburg]]></category>
		<category><![CDATA[tilt shift]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=377</guid>
		<description><![CDATA[I took this shot from the &#8220;Feste Hohensalzburg&#8221;, Salzburg&#8217;s big castle on top of a huge rock, looking down on the University buidlings, the river Salzach, the footbridge Markarsteg, and the Sacher Hotels on the opposite bank. The tilt shift effect was applied with Photoshop afterwards. More experimental photography will hopefully follow soon.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I took this shot from the &#8220;Feste Hohensalzburg&#8221;, Salzburg&#8217;s big castle on top of a huge rock, looking down on the University buidlings, the river Salzach, the footbridge Markarsteg, and the Sacher Hotels on the opposite bank. <span id="more-377"></span>The tilt shift effect was applied with Photoshop afterwards. <a title="Tribute to Lyttelton" href="http://www.friiitz.de/friiitzdesign/tribute-to-lyttelton/">More experimental photography</a> will hopefully follow soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/miniature-salzburg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pfarrei St. Sebastian Oettingen</title>
		<link>http://www.friiitz.de/friiitzdesign/pfarrei-st-sebastian-oettingen/</link>
		<comments>http://www.friiitz.de/friiitzdesign/pfarrei-st-sebastian-oettingen/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:39:05 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=317</guid>
		<description><![CDATA[Clean, WordPress theme for the website of a local catholic parish.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Clean, WordPress theme for the website of a local catholic parish.<span id="more-317"></span></p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>WordPress CMS &amp; News-Blog</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"><br />
<a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb01.jpg"><img class="alignnone size-thumbnail wp-image-476 showcase colorbox-317" title="Pfarrei St. Sebastian Oettingen - overview" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb01-150x150.jpg" alt="Pfarrei St. Sebastian Oettingen - overview" width="100" height="100" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb02.jpg"><img class="alignnone size-thumbnail wp-image-477 showcase colorbox-317" title="Pfarrei St. Sebastian Oettingen - full width page" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb02-150x150.jpg" alt="Pfarrei St. Sebastian Oettingen - full width page" width="100" height="100" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb03.jpg"><img class="alignnone size-thumbnail wp-image-478 showcase colorbox-317" title="Pfarrei St. Sebastian Oettingen - features" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb03-150x150.jpg" alt="Pfarrei St. Sebastian Oettingen - features" width="100" height="100" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb04.jpg"><img class="alignnone size-thumbnail wp-image-479 showcase colorbox-317" title="Pfarrei St. Sebastian Oettingen - typography" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/seb04-150x150.jpg" alt="Pfarrei St. Sebastian Oettingen - typography" width="100" height="100" /></a><br />
</div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>continuous service</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>Pfarrei St. Sebastian Oettingen</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://www.st-sebastian-oettingen.de" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/pfarrei-st-sebastian-oettingen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BOB im Ries</title>
		<link>http://www.friiitz.de/friiitzdesign/bob-im-ries/</link>
		<comments>http://www.friiitz.de/friiitzdesign/bob-im-ries/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:37:22 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[launch page]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=314</guid>
		<description><![CDATA[Description following&#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Description following&#8230;</p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>WordPress CMS &amp; News-Blog</li>
<li>Flickr picture gallery</li>
<li>Random pictures in sidebar</li>
<li>Accordion menues on pages</li>
<li>Google Maps integration</li>
<li>HTML5 image hover effects</li>
<li>Countdown launch page with email subscription form</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"></p>
<p><a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob01.jpg"><img class="alignnone size-thumbnail wp-image-657 showcase colorbox-314" title="BOB im Ries – overview" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob01-150x150.jpg" alt="BOB im Ries – overview" width="100" height="100" /></a><a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob03.jpg"><img class="alignnone size-thumbnail wp-image-659 showcase colorbox-314" title="BOB im Ries – blog" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob03-150x150.jpg" alt="BOB im Ries – blog" width="100" height="100" /></a><a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob04.jpg"><img class="alignnone size-thumbnail wp-image-656 showcase colorbox-314" title="BOB im Ries – map integration" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob04-150x150.jpg" alt="BOB im Ries – map integration" width="100" height="100" /></a><a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob02.jpg"><img class="alignnone size-thumbnail wp-image-658 showcase colorbox-314" title="BOB im Ries – sponsor wall" src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/10/bob02-150x150.jpg" alt="BOB im Ries – sponsor wall" width="100" height="100" /></a></p>
<p></div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>continuous service</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>Evangelische Landjugend Schwaben, KLJB Kreisrunde Nördlingen, Verkehrswacht Nördlingen</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://www.bob-ries.de" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/bob-im-ries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>360 degrees // panorama</title>
		<link>http://www.friiitz.de/friiitzdesign/360-degrees-panorama/</link>
		<comments>http://www.friiitz.de/friiitzdesign/360-degrees-panorama/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:35:43 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[1140px grid]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[panorama viewer]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=311</guid>
		<description><![CDATA[During my study-abroad semester in New Zealand I started with panorama photography. On numerous tramping trips I tried to capture as much as possible of the amazing landscape of the South Island (I&#8217;m sure the North Island is pretty, too &#8211; just haven&#8217;t been there&#8230; yet) in a single picture. After I came back, panorama &#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">During my study-abroad semester in New Zealand I started with panorama photography. On numerous <a class="abbr" title="The New Zealand term for hiking">tramping</a> trips I tried to capture as much as possible of the amazing landscape of the South Island (I&#8217;m sure the North Island is pretty, too &#8211; just haven&#8217;t been there&#8230; yet) in a single picture. After I came back, panorama pictures of other places I traveled to were added to the collection. And the project continues&#8230;</p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>Designed from scratch based on 1140px grid</li>
<li>Random pictures in index slideshow (Nivo-Slider)</li>
<li>jQuery sorting menu</li>
<li>Zoomify panorama picture viewer integration</li>
<li>jQuery page slider</li>
<li>Google Maps integration</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"><br />
<a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan01.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan01-150x150.jpg" alt="360degrees // panorama - overview" title="360degrees // panorama - overview" class="alignnone size-thumbnail wp-image-465 showcase colorbox-311" width="100" height="100" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan02.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan02-150x150.jpg" alt="360degrees // panorama - map" title="360degrees // panorama - map" class="alignnone size-thumbnail wp-image-466 showcase colorbox-311" width="100" height="100" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan03.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan03-150x150.jpg" alt="360degrees // panorama - description" title="360degrees // panorama - description" class="alignnone size-thumbnail wp-image-467 showcase colorbox-311" width="100" height="100" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan04.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pan04-150x150.jpg" alt="360degrees // panorama - zoomify viewer" title="360degrees // panorama - zoomify viewer" class="alignnone size-thumbnail wp-image-468 showcase colorbox-311" width="100" height="100" /></a><br />
</div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a> &amp; <a href="/friiitzdesign/photography/">photography</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>ongoing</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>own project</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://360degrees.friiitz.de" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/360-degrees-panorama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mops fidel</title>
		<link>http://www.friiitz.de/friiitzdesign/mops-fidel/</link>
		<comments>http://www.friiitz.de/friiitzdesign/mops-fidel/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:33:49 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=308</guid>
		<description><![CDATA[Description following&#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Description following&#8230;</p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>WordPress CMS &amp; News-Blog</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"><br />
<a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/mop01.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/mop01-150x150.jpg" alt="mops fidel - overview" title="mops fidel - overview" width="100" height="100" class="alignnone size-thumbnail wp-image-481 showcase colorbox-308" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/mop02.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/mop02-150x150.jpg" alt="mops fidel - infinite post scrolling" title="mops fidel - infinite post scrolling" width="100" height="100" class="alignnone size-thumbnail wp-image-482 showcase colorbox-308" /></a><br />
</div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>continuous service</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>Weingut Lutz</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://mopsfidel.lutz-weine.de" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/mops-fidel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bio-Bergbauernhof Payrhof</title>
		<link>http://www.friiitz.de/friiitzdesign/bio-bergbauernhof-payrhof/</link>
		<comments>http://www.friiitz.de/friiitzdesign/bio-bergbauernhof-payrhof/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:31:35 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[booking module]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[guestbook]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=305</guid>
		<description><![CDATA[Description following&#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Description following&#8230;</p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>WordPress CMS</li>
<li>Picture gallery</li>
<li>Random pictures in sidebar</li>
<li>Slideshow in header</li>
<li>Customizable design features in backend
<ul>
<li>Custom fullscreen background image</li>
<li>Switch between custom slideshow folders</li>
<li>Custom logo image</li>
<li>Sidebar ads</li>
</ul>
</li>
<li>Booking form</li>
<li>Booking calendar</li>
<li>Guestbook</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"><br />
<a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay01.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay01-150x150.jpg" alt="Payrhof - overview" title="Payrhof - overview" width="100" height="100" class="alignnone size-thumbnail wp-image-484 showcase colorbox-305" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay02.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay02-150x150.jpg" alt="Payrhof - room description &amp; booking calendar" title="Payrhof - room description &amp; booking calendar" width="100" height="100" class="alignnone size-thumbnail wp-image-485 showcase colorbox-305" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay03.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay03-150x150.jpg" alt="Payrhof - gallery" title="Payrhof - gallery" width="100" height="100" class="alignnone size-thumbnail wp-image-486 showcase colorbox-305" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay04.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/pay04-150x150.jpg" alt="Payrhof - booking form" title="Payrhof - booking form" width="100" height="100" class="alignnone size-thumbnail wp-image-487 showcase colorbox-305" /></a><br />
</div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>continuous service</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>Bio-Bergbauernhof Payrhof</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://www.payrhof.at" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/bio-bergbauernhof-payrhof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weingut Lutz</title>
		<link>http://www.friiitz.de/friiitzdesign/weingut-lutz/</link>
		<comments>http://www.friiitz.de/friiitzdesign/weingut-lutz/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:29:08 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[shop solution]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=302</guid>
		<description><![CDATA[Description following&#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Description following&#8230;</p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>Onlineshop</li>
<li>WordPress CMS &amp; News-Blog</li>
<li>Picture gallery</li>
<li>Random pictures in sidebar</li>
<li>Slideshow as header graphic</li>
<li>Accordion menues on pages</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"><br />
<a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lut01.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lut01-150x150.jpg" alt="Weingut Lutz - overview" title="Weingut Lutz - overview" width="100" height="100" class="alignnone size-thumbnail wp-image-489 showcase colorbox-302" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lut02.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lut02-150x150.jpg" alt="Weingut Lutz - features" title="Weingut Lutz - features" width="100" height="100" class="alignnone size-thumbnail wp-image-490 showcase colorbox-302" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lut04.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/lut04-150x150.jpg" alt="Weingut Lutz - online shop" title="Weingut Lutz - online shop" width="100" height="100" class="alignnone size-thumbnail wp-image-492 showcase colorbox-302" /></a><br />
</div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>continuous service</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>Weingut Lutz</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://www.lutz-weine.de" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/weingut-lutz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Katholische Jugend Oettingen</title>
		<link>http://www.friiitz.de/friiitzdesign/katholische-jugend-oettingen/</link>
		<comments>http://www.friiitz.de/friiitzdesign/katholische-jugend-oettingen/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:27:15 +0000</pubDate>
		<dc:creator>friiitz</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[guestbook]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[password access]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/friiitzdesign/?p=299</guid>
		<description><![CDATA[Description following&#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Description following&#8230;</p>
<div class="description-wrap-top"></p>
<p><div class="description-inner-top-1"></p>
<h3>Features</h3>
<ul>
<li>WordPress CMS &amp; News-Blog</li>
<li>Picture gallery</li>
<li>Random pictures in sidebar</li>
<li>Password-protected login</li>
<li>Group-specific page access</li>
<li>Built-in newsletter designing and sending tool</li>
<li>Accordion menues on pages</li>
<li>Guestbook</li>
</ul>
<p></div></p>
<p><div class="description-inner-top-2"><br />
<a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug01.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug01-150x150.jpg" alt="Kath. Jugend Oettingen - overview" title="Kath. Jugend Oettingen - overview" width="100" height="100" class="alignnone size-thumbnail wp-image-494 showcase colorbox-299" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug02.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug02-150x150.jpg" alt="Kath. Jugend Oettingen - infinite post scrolling" title="Kath. Jugend Oettingen - infinite post scrolling" width="100" height="100" class="alignnone size-thumbnail wp-image-495 showcase colorbox-299" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug03.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug03-150x150.jpg" alt="Kath. Jugend Oettingen - gallery overview" title="Kath. Jugend Oettingen - gallery overview" width="100" height="100" class="alignnone size-thumbnail wp-image-496 showcase colorbox-299" /></a> <a href="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug04.jpg"><img src="http://www.friiitz.de/friiitzdesign/wp-content/uploads/2011/07/jug04-150x150.jpg" alt="Kath. Jugend Oettingen - gallery" title="Kath. Jugend Oettingen - gallery" width="100" height="100" class="alignnone size-thumbnail wp-image-497 showcase colorbox-299" /></a><br />
</div></p>
<p><div class="clear"></div></div>
<div class="description-wrap-bottom"></p>
<p><div class="description-inner-bottom-1"><h4>Category</h4><p><a href="/friiitzdesign/webdesign/">webdesign</a></p></div></p>
<p><div class="description-inner-bottom-2"><h4>Status</h4><p>continuous service</p></div></p>
<p><div class="description-inner-bottom-3"><h4>Customer</h4><p>Katholische Jugend Oettingen</p></div></p>
<p><div class="description-inner-bottom-4"><a class="more-link" href="http://www.oettingen.org" target="_blank">Visit site &rArr;</a></div></p>
<p><div class="clear"></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.friiitz.de/friiitzdesign/katholische-jugend-oettingen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.friiitz.de/friiitzdesign/feed/ ) in 0.42921 seconds, on Feb 22nd, 2012 at 10:00 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 22nd, 2012 at 11:00 pm UTC -->
