coleslaw/themes/atom.tmpl
2013-04-25 16:40:55 +08:00

30 lines
814 B
Cheetah

{namespace coleslaw.theme.feeds}
{template atom-feed}
<?xml version="1.0"?>{\n}
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{$config.title}</title>
<link href="{$config.domain}"/>
<link type="application/atom+xml" rel="self" href="{$config.domain}/atom.xml"/>
<updated>{$pubdate}</updated>
<author>
<name>{$config.author}</name>
</author>
{foreach $post in $content.posts}
<entry>
<link type="text/html" rel="alternate" href="{$config.domain}/posts/{$post.slug}.html"/>
<title>{$post.title}</title>
<published>{$post.date}</published>
<updated>{$post.date}</updated>
<author>
<name>{$config.author}</name>
<uri>{$config.domain}</uri>
</author>
<content type="html">{$post.text |escapeHtml}</content>
</entry>
{/foreach}
</feed>
{/template}