coleslaw/themes/hyde/atom.tmpl
2012-08-30 00:07:07 -04:00

30 lines
740 B
Cheetah

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