coleslaw/themes/sitemap.tmpl
2014-04-15 19:05:52 -04:00

13 lines
309 B
Cheetah

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