coleslaw/themes/sitemap.tmpl
2013-04-26 10:03:04 +08:00

12 lines
276 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 $content.urls}
<url>
<loc>{$config.domain}{$url}</loc>
</url>
{/foreach}
</urlset>
{/template}