<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Dayle Rees</title>
	<atom:link href="http://daylerees.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://daylerees.com</link>
	<description>Tools, Frameworks, Snippets, and other time saving goodies…</description>
	<lastBuildDate>Wed, 07 Dec 2011 16:47:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Meetings by The CI Learner</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-30</link>
		<dc:creator>The CI Learner</dc:creator>
		<pubDate>Wed, 07 Dec 2011 16:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-30</guid>
		<description>sorry, like this 
&lt;code&gt;

&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot; 

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>sorry, like this<br />
<code></p>
<p>&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot; </p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Meetings by Dayle</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-29</link>
		<dc:creator>Dayle</dc:creator>
		<pubDate>Wed, 07 Dec 2011 13:59:06 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-29</guid>
		<description>The Layout Helper will generate these tags for you, or you can find all the items in the $assets array from within the view. This is all in the documentation.</description>
		<content:encoded><![CDATA[<p>The Layout Helper will generate these tags for you, or you can find all the items in the $assets array from within the view. This is all in the documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Meetings by The CI Learner</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-28</link>
		<dc:creator>The CI Learner</dc:creator>
		<pubDate>Wed, 07 Dec 2011 13:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-28</guid>
		<description>I have to put like this in my view 

&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;&quot;&gt; 

right?

I need to know how your library work ? ;)
how strong your librarty to change my CI standard code :)</description>
		<content:encoded><![CDATA[<p>I have to put like this in my view </p>
<p>&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;&#8221;&gt; </p>
<p>right?</p>
<p>I need to know how your library work ? <img src='http://daylerees.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
how strong your librarty to change my CI standard code <img src='http://daylerees.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Meetings by Dayle</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-27</link>
		<dc:creator>Dayle</dc:creator>
		<pubDate>Wed, 07 Dec 2011 11:53:54 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-27</guid>
		<description>Hi again, the layout library is an built upon CodeIgniters $this-&gt;load-&gt;view() and data is passed to the view in the same way, so you could either get the CSS from the $assets array in the view, as stated in the docs :

To access either resource manually, simply access the $assets[&#039;css&#039;] or $assets[&#039;js&#039;] array within your views.

Or use the helper as documented in the &#039;Layout Helper&#039; section to help with linking your stylesheets and javascripts.</description>
		<content:encoded><![CDATA[<p>Hi again, the layout library is an built upon CodeIgniters $this->load->view() and data is passed to the view in the same way, so you could either get the CSS from the $assets array in the view, as stated in the docs :</p>
<p>To access either resource manually, simply access the $assets['css'] or $assets['js'] array within your views.</p>
<p>Or use the helper as documented in the &#8216;Layout Helper&#8217; section to help with linking your stylesheets and javascripts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Meetings by The CI Learner</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-26</link>
		<dc:creator>The CI Learner</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-26</guid>
		<description>First, you write
$this-&gt;layout-&gt;show(&#039;my_view&#039;, array(&#039;dog&#039; = &#039;Rover&#039;));
must like this, right?
$this-&gt;layout-&gt;show(&#039;my_view&#039;, array(&#039;dog&#039; =&gt; &#039;Rover&#039;));

I autoload your library and helper.
and success to write &#039;Rover&#039; in my view, but how to write css and JS?
-------------------------------
My controller like this
-------------------------------
	function layout()
	{
                $this-&gt;layout-&gt;css(&#039;assets/css/styles.css&#039;);
		$this-&gt;layout-&gt;template(&#039;my_template&#039;)-&gt;show(&#039;my_view&#039;, array(&#039;dog&#039; =&gt; &#039;Rover&#039;));
	}
	
	function layout2()
	{
		$this-&gt;layout-&gt;css(&#039;assets/css/styles2.css&#039;);
		$this-&gt;layout-&gt;show(&#039;my_view&#039;, array(&#039;dog&#039; =&gt; &#039;Rover&#039;));
	}

-------------------------------
Config Layout
-------------------------------
$layout[&#039;templates&#039;] = array(

	// default template
	&#039;main&#039;	=&gt;	array(
		&#039;-YIELD-&#039;
	),
	&#039;my_template&#039;	=&gt;	array(
		&#039;header&#039;,
		&#039;-YIELD-&#039;,
		&#039;footer&#039;
	)	
);

----------------
my_view.php
---------------
how to?



Ca n you make a sample, save in a zip file? :p</description>
		<content:encoded><![CDATA[<p>First, you write<br />
$this-&gt;layout-&gt;show(&#8216;my_view&#8217;, array(&#8216;dog&#8217; = &#8216;Rover&#8217;));<br />
must like this, right?<br />
$this-&gt;layout-&gt;show(&#8216;my_view&#8217;, array(&#8216;dog&#8217; =&gt; &#8216;Rover&#8217;));</p>
<p>I autoload your library and helper.<br />
and success to write &#8216;Rover&#8217; in my view, but how to write css and JS?<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
My controller like this<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
	function layout()<br />
	{<br />
                $this-&gt;layout-&gt;css(&#8216;assets/css/styles.css&#8217;);<br />
		$this-&gt;layout-&gt;template(&#8216;my_template&#8217;)-&gt;show(&#8216;my_view&#8217;, array(&#8216;dog&#8217; =&gt; &#8216;Rover&#8217;));<br />
	}</p>
<p>	function layout2()<br />
	{<br />
		$this-&gt;layout-&gt;css(&#8216;assets/css/styles2.css&#8217;);<br />
		$this-&gt;layout-&gt;show(&#8216;my_view&#8217;, array(&#8216;dog&#8217; =&gt; &#8216;Rover&#8217;));<br />
	}</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Config Layout<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
$layout['templates'] = array(</p>
<p>	// default template<br />
	&#8216;main&#8217;	=&gt;	array(<br />
		&#8216;-YIELD-&#8217;<br />
	),<br />
	&#8216;my_template&#8217;	=&gt;	array(<br />
		&#8216;header&#8217;,<br />
		&#8216;-YIELD-&#8217;,<br />
		&#8216;footer&#8217;<br />
	)<br />
);</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
my_view.php<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
how to?</p>
<p>Ca n you make a sample, save in a zip file? :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Meetings by Dayle</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-25</link>
		<dc:creator>Dayle</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-25</guid>
		<description>Hi!

If you take a look at the page http://daylerees.com/layout , all of the information about using the layout can be found there, the section &#039;Binding Binding Data to Views&#039; and &#039;Adding Assets&#039; are specific to your questions :)

As for creating a 3 template, all templates are defined in an ordered array, as described in the section &#039;Using Templates&#039;.

Let me know if anything in the documentation is unclear, and thanks for using the library!</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>If you take a look at the page <a href="http://daylerees.com/layout" rel="nofollow">http://daylerees.com/layout</a> , all of the information about using the layout can be found there, the section &#8216;Binding Binding Data to Views&#8217; and &#8216;Adding Assets&#8217; are specific to your questions <img src='http://daylerees.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>As for creating a 3 template, all templates are defined in an ordered array, as described in the section &#8216;Using Templates&#8217;.</p>
<p>Let me know if anything in the documentation is unclear, and thanks for using the library!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Meetings by The CI Learner</title>
		<link>http://daylerees.com/2011/10/05/meetings/#comment-23</link>
		<dc:creator>The CI Learner</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=45#comment-23</guid>
		<description>Can you make a sample for layout library -&gt; http://daylerees.com/layout

How to add css? where I must put css name? how to implementation 3 template? how to send data to view?

Sorry, Im confused, but I so excited with your library. Thanks</description>
		<content:encoded><![CDATA[<p>Can you make a sample for layout library -&gt; <a href="http://daylerees.com/layout" rel="nofollow">http://daylerees.com/layout</a></p>
<p>How to add css? where I must put css name? how to implementation 3 template? how to send data to view?</p>
<p>Sorry, Im confused, but I so excited with your library. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Theme by Dayle</title>
		<link>http://daylerees.com/2011/09/07/new-theme/#comment-20</link>
		<dc:creator>Dayle</dc:creator>
		<pubDate>Wed, 05 Oct 2011 12:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=41#comment-20</guid>
		<description>Hmmm just noticed the gravatars don&#039;t seem to be showing. I&#039;ll take a look!</description>
		<content:encoded><![CDATA[<p>Hmmm just noticed the gravatars don&#8217;t seem to be showing. I&#8217;ll take a look!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Theme by Dayle</title>
		<link>http://daylerees.com/2011/09/07/new-theme/#comment-19</link>
		<dc:creator>Dayle</dc:creator>
		<pubDate>Wed, 05 Oct 2011 12:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=41#comment-19</guid>
		<description>Thanks man, a lot of people are going responsive these days, mostly driven by the whole &#039;mobile first&#039; design idea. Which I&#039;m not a huge fan of, mobile was either during or after on this design.</description>
		<content:encoded><![CDATA[<p>Thanks man, a lot of people are going responsive these days, mostly driven by the whole &#8216;mobile first&#8217; design idea. Which I&#8217;m not a huge fan of, mobile was either during or after on this design.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Theme by Dave</title>
		<link>http://daylerees.com/2011/09/07/new-theme/#comment-18</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 05 Oct 2011 12:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://daylerees.com/?p=41#comment-18</guid>
		<description>Hehe... try var_dumping $brain-&gt;thoughts() for ideas - it may be returning a more complex data type ;]

Just tried condensing the screen size too... that&#039;s a pretty darned handy feature, I gotta say. *robs idea*.</description>
		<content:encoded><![CDATA[<p>Hehe&#8230; try var_dumping $brain-&gt;thoughts() for ideas &#8211; it may be returning a more complex data type ;]</p>
<p>Just tried condensing the screen size too&#8230; that&#8217;s a pretty darned handy feature, I gotta say. *robs idea*.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

