123456789101112131415161718192021222324252627282930 |
- {namespace coleslaw.theme.feeds}
- {template rss}
- <?xml version="1.0"?>{\n}
- <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
- <channel>
- <title>{$config.title}</title>
- <link>{$config.domain}</link>
- <atom:link href="{$config.domain}/rss.xml" rel="self" type="application/rss+xml" />
- <language>en-us</language>
- <pubDate>{$pubdate}</pubDate>
- {foreach $post in $content.posts}
- <item>
- <title>{$post.title}</title>
- <link>{$config.domain}/posts/{$post.slug}.{$config.pageExt}</link>
- <pubDate>{$post.date}</pubDate>
- <author>{$config.author}</author>
- <guid isPermaLink="true">{$config.domain}/posts/{$post.slug}.{$config.pageExt}</guid>
- {foreach $tag in $post.tags}
- <category><![CDATA[ {$tag} ]]></category>
- {/foreach}
- <description><![CDATA[ {$post.text |noAutoescape} ]]></description>
- </item>
- {/foreach}
- </channel>
- </rss>
- {/template}
|