coleslaw/themes/sitemap.tmpl

14 lines
323 B
Cheetah
Raw Normal View History

2013-04-26 10:03:04 +08:00
{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>
<lastmod>{$content.pubdate}</lastmod>
2013-04-26 10:03:04 +08:00
</url>
{/foreach}
</urlset>
{/template}