<?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>solemone design&#039;art &#187; Webdesign</title>
	<atom:link href="http://solemone.de/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://solemone.de</link>
	<description>Design Inspiration Blog of solemone</description>
	<lastBuildDate>Sat, 31 Dec 2011 22:59:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>List your Behance Feed in WordPress without a Plugin</title>
		<link>http://solemone.de/webdesign/list-your-behance-feed-in-wordpress-without-a-plugin/</link>
		<comments>http://solemone.de/webdesign/list-your-behance-feed-in-wordpress-without-a-plugin/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 13:31:00 +0000</pubDate>
		<dc:creator>solemone</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[behance]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[thumbnail]]></category>

		<guid isPermaLink="false">http://www.solemone.de/?p=817</guid>
		<description><![CDATA[List your Behance feed in WordPress is very similar to list any other feed. You can use the integrated functions from WordPress. The only problem is that the thumbnail images from the Behance feed have no tag for themselves. So we have to get it out of the project &#60;description&#62; XML tag. This happens with [...]]]></description>
			<content:encoded><![CDATA[<p>List your Behance feed in WordPress is very similar to list any other feed. You can use the integrated functions from WordPress. The only problem is that the thumbnail images from the Behance feed have no tag for themselves. So we have to get it out of the project &lt;description&gt; XML tag. This happens with a small function, which grabs the &lt;img&gt; from the description string. Check it out:</p>
<p><span id="more-817"></span>
<pre><code class="language-php brush: php" style="min-width:732px;">&lt;?php
// include feed.php from WordPress to fetch the feed
include_once(ABSPATH.WPINC.&#039;/feed.php&#039;);

// function to get the image out of the description tag in the feed
// http://www.catswhocode.com/blog/10-php-code-snippets-for-working-with-strings
function GetBetween($content,$start,$end){
	$r = explode($start, $content);
	if (isset($r[1])){
		$r = explode($end, $r[1]);
		return $r[0];
	}
	return &#039;&#039;;
}

// put your behance feed in the string http://www.behance.net/YOURFEED.xml
$rss = fetch_feed(&#039;http://www.behance.net/solemone.xml&#039;);

// set the number of items, now there are 6 items
$maxitems = $rss-&gt;get_item_quantity(6);

// get the items
$rss_items = $rss-&gt;get_items(0, $maxitems);
?&gt;

&lt;ul id=&quot;behance&quot;&gt;

&lt;?php
// handle if there is no feed or empty feed
if (!$rss_items) :
	echo &#039;&lt;li&gt;No items.&lt;/li&gt;&#039;;
else :
	// start the loop for the items in feed
	foreach ( $rss_items as $item ) :
?&gt;
	&lt;li&gt;
		&lt;a href=&quot;&lt;?php echo $item-&gt;get_permalink(); ?&gt;&quot; title=&quot;&lt;?php echo $item-&gt;get_title(); ?&gt;&quot;&gt;
		&lt;?php
		// you can also place the title here if you like
		// echo $item-&gt;get_title();

		// here you get the image out of the description tag in the feed
		echo &#039;&lt;img &#039;.GetBetween($item-&gt;get_description(), &#039;&lt;img&#039;, &#039;&gt;&#039;).&#039;&gt;&#039;;
		?&gt;
		&lt;/a&gt;
	&lt;/li&gt;
	&lt;?php endforeach; ?&gt;
&lt;/ul&gt;
&lt;?php endif; ?&gt;
</code></pre>
<p>PS: The images have a embedded style attribute, which you can also delete with a <a href="http://www.catswhocode.com/blog/10-php-code-snippets-for-working-with-strings">PHP String function</a>. Or you give the styles in your stylesheet a !important hack.</p>
]]></content:encoded>
			<wfw:commentRss>http://solemone.de/webdesign/list-your-behance-feed-in-wordpress-without-a-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blog Theme Redesign</title>
		<link>http://solemone.de/news/blog-theme-redesign/</link>
		<comments>http://solemone.de/news/blog-theme-redesign/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 21:07:23 +0000</pubDate>
		<dc:creator>solemone</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[webdesign. blog]]></category>

		<guid isPermaLink="false">http://www.solemone.de/?p=963</guid>
		<description><![CDATA[As you can see I´ve designed a new theme for my blog. It´s been a while that something was changed at the design. So I decides to make a whole new theme. The new one has a bigger area for the main content and a more useful sidebar. The main change is that you see almost the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-987" title="solemone blog redesign" src="http://www.solemone.de/wp-content/uploads/2010/11/solemone-blog-redesign.jpg" alt="solemone blog redesign" width="618" height="230" /></p>
<p>As you can see I´ve designed a new theme for my blog. It´s been a while that something was changed at the design. So I decides to make a whole new theme. The new one has a bigger area for the main content and a more useful sidebar. The main change is that you see almost the entire content of the newest articles on the Homepage. You can just scroll down and don´t have to click around to read the content of the article. In the old version you only saw some thumbnails and titles of the latest ten Posts.</p>
<p>Almost all articles that I publish have images which I want to show as large as it goes. Because large images rock. A next big change is the header. It´s much smaller than the old one. This has the advantage that you can see more content on the first impression.</p>
<p>Another reformation is a small <a href="/portfolio/">portfolio page</a> with poster designs and design studies from me. Last but not least I renewed the <a href="/contact/">contact page</a>.</p>
<p><span id="more-963"></span></p>
<p><strong>Technical Informations</strong></p>
<p>The site is written in HTML5 with new elements like: header, nav, section, article and footer. I´ve also used CSS3 stuff (box-shadow, border-radius, gradients, selectors) for styling some elements. I really recommend the <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a> default. It was such a help with great tips and tricks.</p>
<p>Here some screenshots:</p>
<p><strong>Old Frontpage:</strong></p>
<p><img class="alignnone size-full wp-image-964" title="old blog frontpage" src="http://www.solemone.de/wp-content/uploads/2010/11/blog-old.jpg" alt="solemone old blog frontpage" width="618" height="464" /></p>
<p><strong>New Frontpage:</strong></p>
<p><img class="alignnone size-full wp-image-965" title="blog redesign" src="http://www.solemone.de/wp-content/uploads/2010/11/blog-redesign.jpg" alt="blog redesign" width="618" height="464" /></p>
<p><strong>Portfolio Page:</strong></p>
<p><img class="alignnone size-full wp-image-968" title="solemone portfolio redesign" src="http://www.solemone.de/wp-content/uploads/2010/11/portfolio-redesign.jpg" alt="solemone portfolio redesign" width="618" height="418" /></p>
<p><strong><strong>Old Contact:</strong></strong></p>
<p><strong><strong><img class="alignnone size-full wp-image-966" title="contact form old" src="http://www.solemone.de/wp-content/uploads/2010/11/contact-form-old.jpg" alt="contact form old" width="618" height="464" /></strong></strong></p>
<p><strong><strong><strong>New Contact:</strong></strong></strong></p>
<p><img class="alignnone size-full wp-image-967" title="solemone contact form redesign" src="http://www.solemone.de/wp-content/uploads/2010/11/contact-form-redesign.jpg" alt="solemone contact form redesign" width="618" height="251" /></p>
<p><img class="alignnone size-full wp-image-981" title="contact form redesign validation" src="http://www.solemone.de/wp-content/uploads/2010/11/contact-form-redesign-validation.jpg" alt="contact form redesign validation" width="618" height="276" /></p>
<p><strong>I´ve used a 12 x 60px Grid with 20px gutters and a 20px margin:</strong></p>
<p><strong><img class="alignnone size-full wp-image-982" title="solemone blog redesign grid" src="http://www.solemone.de/wp-content/uploads/2010/11/solemone-blog-redesign-grid.jpg" alt="solemone blog redesign grid" width="618" height="464" /></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://solemone.de/news/blog-theme-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website für Milsone</title>
		<link>http://solemone.de/flash/hammer-internetseite-fur-milsone/</link>
		<comments>http://solemone.de/flash/hammer-internetseite-fur-milsone/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 09:38:33 +0000</pubDate>
		<dc:creator>solemone</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.solemone.de/?p=9</guid>
		<description><![CDATA[Direkt von der Psychatrie12-6 aus Berlin-Hellersdorf in euren Kopf! Das neue Album von milsone ist da und steht zum kostenlosen Download verfügbar. Aus diesem Grund erstellte solemone eine Flash Internetseite für milsone. Das fertige Ergebnis, sowie den Link für das Album findet Ihr hier!]]></description>
			<content:encoded><![CDATA[<p>Direkt von der <a title="psychatrie126-myspace-profil" href="http://www.myspace.com/psychatrie126" target="_blank">Psychatrie12-6</a> aus Berlin-Hellersdorf in euren Kopf! Das neue Album von <a title="milsone-myspace-profil" href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=307802389" target="_blank">milsone</a> ist da und steht zum kostenlosen Download verfügbar. Aus diesem Grund erstellte <a title="solemone.de-blog" href="http://www.solemone.de/" target="_self">solemone</a> eine Flash Internetseite für <a title="milsone-myspace-profil" href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=307802389" target="_blank">milsone</a>. Das fertige Ergebnis, sowie den Link für das Album <span style="color: #ff00ff;"><a title="milsone-offizielle-internetseite" href="http://www.milsone.de/" target="_blank">findet Ihr hier!</a></span></p>
<p><img style="border:none;" title="milsone-banner" src="http://www.solemone.de/wp-content/uploads/milsone-banner-425px-x-122p.jpg" alt="milsone-banner" width="425" height="122" /></p>
]]></content:encoded>
			<wfw:commentRss>http://solemone.de/flash/hammer-internetseite-fur-milsone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

