coleslaw/themes/atom.tmpl

31 lines
818 B
Cheetah
Raw Normal View History

2012-08-29 23:25:41 -04:00
{namespace coleslaw.theme.hyde}
2012-11-26 23:03:22 -05:00
{template atom-feed}
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.posts}
2012-08-29 23:25:41 -04:00
<entry>
<link type="text/html" rel="alternate" href="{$config.domain}/posts/{$post.slug}.html"/>
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>
<content type="html">{$post.content |noAutoescape}</content>
2012-08-29 23:25:41 -04:00
</entry>
{/foreach}
</feed>
{/template}