<?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 on: Creating a Mephisto Theme using Liquid</title>
	<atom:link href="http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/</link>
	<description>We design &#38; build outstanding websites, desktop and mobile software applications</description>
	<lastBuildDate>Tue, 08 Nov 2011 22:37:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Bryan</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-2101</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Mon, 19 Jul 2010 05:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-2101</guid>
		<description>It stripped some of the code on the third line.</description>
		<content:encoded><![CDATA[<p>It stripped some of the code on the third line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-2097</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Mon, 19 Jul 2010 05:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-2097</guid>
		<description>Does related items code work?  I used the following version, but it does not generate anything.  

{{ article.tags &#124; tagged_articles &#124; assign_to: ‘rel_articles’}}
{% for rel_article in rel_articles %}
&lt;a href=&quot;‘{{rel_article.url}}‘&quot; rel=&quot;nofollow&quot;&gt;{{ rel_article.title }}
{% endfor %}

I tried {{ article.tags &#124; tagged_articles }} to troubleshoot.  It generated:


###

Thanks,

Bryan</description>
		<content:encoded><![CDATA[<p>Does related items code work?  I used the following version, but it does not generate anything.  </p>
<p>{{ article.tags | tagged_articles | assign_to: ‘rel_articles’}}<br />
{% for rel_article in rel_articles %}<br />
<a href="‘{{rel_article.url}}‘" rel="nofollow">{{ rel_article.title }}<br />
{% endfor %}</p>
<p>I tried {{ article.tags | tagged_articles }} to troubleshoot.  It generated:</p>
<p>###</p>
<p>Thanks,</p>
<p>Bryan</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-273</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 22 Mar 2010 13:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-273</guid>
		<description>urgh it stripped all the html:

just do &lt;meta name=&quot;keywords&quot; content=&quot;{{ article.tags }}&quot;/&gt; and it will use the tags in the keywords and happy days. Although many search engines don&#226;��t put much weight on tags. However:

&lt;meta name=&quot;description&quot; content=&quot;{{ article.excerpt }}&quot;/&gt;

Is great for page specific descriptions for SEO. On my site I wrap it in this:

{% if article.excerpt.size &gt; 5  %}
                &lt;meta name=&quot;description&quot; content=&quot;{{ article.excerpt }}&quot;/&gt;
{% else %}
                &lt;meta name=&quot;description&quot; content=&quot;{{ article.title}} - Official Ip Man Wing Chun Kung Fu Website from Sam Kwok&quot;/&gt;
{% endif %}</description>
		<content:encoded><![CDATA[<p>urgh it stripped all the html:</p>
<p>just do &lt;meta name=&quot;keywords&quot; content=&quot;{{ article.tags }}&quot;/&gt; and it will use the tags in the keywords and happy days. Although many search engines don&acirc;��t put much weight on tags. However:</p>
<p>&lt;meta name=&quot;description&quot; content=&quot;{{ article.excerpt }}&quot;/&gt;</p>
<p>Is great for page specific descriptions for SEO. On my site I wrap it in this:</p>
<p>{% if article.excerpt.size &gt; 5  %}<br />
                &lt;meta name=&quot;description&quot; content=&quot;{{ article.excerpt }}&quot;/&gt;<br />
{% else %}<br />
                &lt;meta name=&quot;description&quot; content=&quot;{{ article.title}} &#8211; Official Ip Man Wing Chun Kung Fu Website from Sam Kwok&quot;/&gt;<br />
{% endif %}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-269</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 22 Mar 2010 13:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-269</guid>
		<description>@Dmitry (or anyone wondering the same thing) just do  and it will use the tags in the keywords and happy days. Although many search engines don&#039;t put much weight on tags. However:



Is great for page specific descriptions for SEO. On my site I wrap it in this:

{% if article.excerpt.size &gt; 5  %}

{% else %}

{% endif %}

Where obviously my website is about Wing Chun Kung Fu</description>
		<content:encoded><![CDATA[<p>@Dmitry (or anyone wondering the same thing) just do  and it will use the tags in the keywords and happy days. Although many search engines don&#8217;t put much weight on tags. However:</p>
<p>Is great for page specific descriptions for SEO. On my site I wrap it in this:</p>
<p>{% if article.excerpt.size &gt; 5  %}</p>
<p>{% else %}</p>
<p>{% endif %}</p>
<p>Where obviously my website is about Wing Chun Kung Fu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-265</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 22 Mar 2010 13:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-265</guid>
		<description>@Ratnamraju you can add images using html markup if that&#039;s what your looking for - also the shopify site has some examples of how you may want to specify images in liquid so they are page (and product) specific.

Anyway nice article! Couldn&#039;t get some of the code snippets to work, like related articles. I did add in the missing percent signs (%) but still no joy any help or clarification would be appreciated. Although not many people seem to use this any more which is a shame as mephisto and liquid are an awesome combo.

Cheers
Dan</description>
		<content:encoded><![CDATA[<p>@Ratnamraju you can add images using html markup if that&#8217;s what your looking for &#8211; also the shopify site has some examples of how you may want to specify images in liquid so they are page (and product) specific.</p>
<p>Anyway nice article! Couldn&#8217;t get some of the code snippets to work, like related articles. I did add in the missing percent signs (%) but still no joy any help or clarification would be appreciated. Although not many people seem to use this any more which is a shame as mephisto and liquid are an awesome combo.</p>
<p>Cheers<br />
Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ratnamraju</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-261</link>
		<dc:creator>Ratnamraju</dc:creator>
		<pubDate>Fri, 12 Mar 2010 08:17:07 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-261</guid>
		<description>how to add image to articles</description>
		<content:encoded><![CDATA[<p>how to add image to articles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uma mahesh varma</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-257</link>
		<dc:creator>uma mahesh varma</dc:creator>
		<pubDate>Mon, 08 Mar 2010 07:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-257</guid>
		<description>Great work.. its really helpfull for a developer who is going to start the mephisto like me. I think this post makes many developers to know how exactly mephisto configured...

Thank You,
Uma.</description>
		<content:encoded><![CDATA[<p>Great work.. its really helpfull for a developer who is going to start the mephisto like me. I think this post makes many developers to know how exactly mephisto configured&#8230;</p>
<p>Thank You,<br />
Uma.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shunya</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-253</link>
		<dc:creator>shunya</dc:creator>
		<pubDate>Fri, 13 Jun 2008 15:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-253</guid>
		<description>may be this article can help you more  http://www.railshacks.com/mephisto-theme</description>
		<content:encoded><![CDATA[<p>may be this article can help you more  <a href="http://www.railshacks.com/mephisto-theme" rel="nofollow">http://www.railshacks.com/mephisto-theme</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitry</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-237</link>
		<dc:creator>Dmitry</dc:creator>
		<pubDate>Mon, 21 Apr 2008 15:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-237</guid>
		<description>i translate this article to russian - http://fakmak.com/2008/4/21/meqhisto-liquid</description>
		<content:encoded><![CDATA[<p>i translate this article to russian &#8211; <a href="http://fakmak.com/2008/4/21/meqhisto-liquid" rel="nofollow">http://fakmak.com/2008/4/21/meqhisto-liquid</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitry</title>
		<link>http://www.gotripod.com/2007/10/10/creating-a-mephisto-theme-using-liquid/comment-page-1/#comment-229</link>
		<dc:creator>Dmitry</dc:creator>
		<pubDate>Mon, 21 Apr 2008 11:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://old.miletbaker.com/index.php/2007/10/15/creating-a-mephisto-theme-using-liquid/#comment-229</guid>
		<description>Nice article, thank you. Please tell also how to use articles tags in meta keywords?</description>
		<content:encoded><![CDATA[<p>Nice article, thank you. Please tell also how to use articles tags in meta keywords?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- Quick Cache: failed to write cache. The cache/ directory is either non-existent ( and could not be created ) or it is not writable. -->
