2012-08-21 23:50:36 -04:00
|
|
|
{namespace coleslaw.theme.hyde}
|
|
|
|
|
2012-11-28 15:56:09 -05:00
|
|
|
{template rss-feed}
|
2012-08-21 23:50:36 -04:00
|
|
|
<?xml version="1.0"?>{\n}
|
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<channel>
|
2012-09-12 14:24:51 -04:00
|
|
|
<title>{$config.title}</title>
|
|
|
|
<link>{$config.domain}</link>
|
|
|
|
<atom:link href="{$config.domain}/rss.xml" rel="self" type="application/rss+xml" />
|
2012-08-21 23:50:36 -04:00
|
|
|
<language>en-us</language>
|
|
|
|
<pubDate>{$pubdate}</pubDate>
|
|
|
|
|
2012-09-12 14:24:51 -04:00
|
|
|
{foreach $post in $content.posts}
|
2012-08-21 23:50:36 -04:00
|
|
|
<item>
|
|
|
|
<title>{$post.title}</title>
|
2012-09-12 14:24:51 -04:00
|
|
|
<link>{$config.domain}/posts/{$post.slug}.html</link>
|
2012-08-21 23:50:36 -04:00
|
|
|
<pubDate>{$post.date}</pubDate>
|
2012-09-12 14:24:51 -04:00
|
|
|
<author>{$config.author}</author>
|
|
|
|
<guid isPermaLink="true">{$config.domain}/posts/{$post.slug}.html</guid>
|
2012-08-22 01:18:18 -04:00
|
|
|
{foreach $tag in $post.tags}
|
2012-08-29 13:19:19 -04:00
|
|
|
<category><![CDATA[ {$tag} ]]></category>
|
2012-08-21 23:50:36 -04:00
|
|
|
{/foreach}
|
2012-08-29 23:53:48 -04:00
|
|
|
<description><![CDATA[ {$post.content |noAutoescape} ]]></description>
|
2012-08-21 23:50:36 -04:00
|
|
|
</item>
|
2012-08-22 00:01:39 -04:00
|
|
|
{/foreach}
|
2012-08-21 23:50:36 -04:00
|
|
|
|
|
|
|
</channel>
|
|
|
|
</rss>
|
2012-08-22 00:01:39 -04:00
|
|
|
{/template}
|