coleslaw/themes/atom.tmpl

31 lines
800 B
Cheetah
Raw Normal View History

{namespace coleslaw.theme.feeds}
2012-08-29 23:25:41 -04:00
{template atom}
2012-08-29 23:25:41 -04:00
<?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"/>
2012-08-29 23:25:41 -04:00
<updated>{$pubdate}</updated>
<author>
<name>{$config.author}</name>
2012-08-29 23:25:41 -04:00
</author>
{foreach $post in $content.content}
2012-08-29 23:25:41 -04:00
<entry>
<link type="text/html" rel="alternate" href="{$config.domain}/{$post.path}"/>
2012-08-29 23:25:41 -04:00
<title>{$post.title}</title>
<published>{$post.date}</published>
<updated>{$post.date}</updated>
<author>
<name>{$config.author}</name>
<uri>{$config.domain}</uri>
2012-08-29 23:25:41 -04:00
</author>
2013-04-25 16:40:55 +08:00
<content type="html">{$post.text |escapeHtml}</content>
2012-08-29 23:25:41 -04:00
</entry>
{/foreach}
</feed>
{/template}