coleslaw/themes/sitemap.tmpl
2013-04-27 02:13:56 +08:00

13 lines
300 B
Cheetah

{namespace coleslaw.theme.feeds}
{template sitemap}
<?xml version="1.0"?>{\n}
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
{foreach $url in $urls}
<url>
<loc>{$domain}/{$url}</loc>
<lastmod>{$pubdate}</lastmod>
</url>
{/foreach}
</urlset>
{/template}