<?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>David James Whitely &#187; Templates</title>
	<atom:link href="http://davidwhitely.com/category/notes/templates/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidwhitely.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 Feb 2012 19:31:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Add Mootool&#8217;s Squeezebox functionality to your Joomla template</title>
		<link>http://davidwhitely.com/2009/12/add-mootools-squeezebox-functionality-to-your-joomla-template/</link>
		<comments>http://davidwhitely.com/2009/12/add-mootools-squeezebox-functionality-to-your-joomla-template/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 02:55:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Squeezebox]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://davidwhitely.com/?p=297</guid>
		<description><![CDATA[Joomla uses Mootools as a Javascript framework by default, and also has a light-box effect called Squeezebox built in by default. It&#8217;s quite easy to add Squeezebox functionality to your Joomla template. In the index.php file of your template, find the head tag and insert this code: &#38;lt;?php JHTML::_('behavior.mootools'); ?&#38;gt; That will output this code: [...]]]></description>
			<content:encoded><![CDATA[<p>Joomla uses <a href="http://mootools.net/" target="_blank">Mootools</a> as a Javascript framework by default, and also has a light-box effect called <a href="http://digitarald.de/project/squeezebox/" target="_blank">Squeezebox</a> built in by default. It&#8217;s quite easy to add Squeezebox functionality to your Joomla template.<span id="more-297"></span><br />
In the index.php file of your template, find the head tag and insert this code:<br />
<code>&amp;lt;?php JHTML::_('behavior.mootools'); ?&amp;gt;</code></p>
<p>That will output this code:</p>
<p><code>&amp;lt;script type="text/javascript" src="&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/media/system/js/modal.js"&amp;gt; &amp;lt;/script&amp;gt;<br />
&amp;lt;link rel="stylesheet" href="&amp;lt;?php echo $this-&amp;gt;baseurl ?&amp;gt;/media/system/css/modal.css" type="text/css" /&amp;gt;<br />
&amp;lt;script type="text/javascript"&amp;gt;<br />
// &amp;lt;!--<br />
window.addEvent('domready', function() {<br />
SqueezeBox.initialize({});<br />
$$('a.modal').each(function(el) {<br />
el.addEvent('click', function(e) {<br />
new Event(e).stop();<br />
SqueezeBox.fromElement(el);<br />
});<br />
});<br />
});<br />
// --&amp;gt;<br />
&amp;lt;/script&amp;gt;</code><br />
Then make some xhtml such as this:<br />
<code>&amp;lt;p&amp;gt;&amp;lt;a class="modal" rel="{handler:'iframe',size:{x:840,y:550}}" href="http://google.com"&amp;gt;TEST&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;</code></p>
<p>You should see a popup with the google homepage in it. Checkout the <a href="http://digitarald.de/project/squeezebox/" target="_blank">Squeezebox</a> page for more info.</p>
]]></content:encoded>
			<wfw:commentRss>http://davidwhitely.com/2009/12/add-mootools-squeezebox-functionality-to-your-joomla-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Tools</title>
		<link>http://davidwhitely.com/2009/12/web-tools/</link>
		<comments>http://davidwhitely.com/2009/12/web-tools/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 00:41:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://davidwhitely.com/?p=293</guid>
		<description><![CDATA[This is going to be a list of web development tools that I use. Right now, it&#8217;s pretty small. Inspired by this page from elementiks.com. Templates: Bulletproof Templates &#8211; Joomla Blank Skeleton Templates Sandbox by Plaintext &#8211; WordPress Blank Skeleton Template jQuery: Visual jQuery jQuery API]]></description>
			<content:encoded><![CDATA[<p>This is going to be a list of web development tools that I use. Right now, it&#8217;s pretty small. Inspired by <a href="http://elementiks.com/web_resources.php">this</a> page from <a href="http://elementiks.com/">elementiks.com.</a></p>
<p><strong>Templates:</strong><br />
<a href="http://www.bulletprooftemplates.com/forum/index.php?f=2&#038;t=1&#038;rb_v=viewtopic">Bulletproof Templates &#8211; Joomla Blank Skeleton Templates</a><br />
<a href="http://www.plaintxt.org/themes/sandbox/">Sandbox by Plaintext &#8211; WordPress Blank Skeleton Template</a></p>
<p><strong>jQuery:</strong><br />
<a href="http://visualjquery.com/">Visual jQuery</a><br />
<a href="http://api.jquery.com/">jQuery API</a></p>
]]></content:encoded>
			<wfw:commentRss>http://davidwhitely.com/2009/12/web-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

