coleslaw/themes/sitemap.tmpl

14 lines
317 B
Cheetah
Raw Permalink Normal View History

2014-04-15 19:05:52 -04:00
{namespace coleslaw.theme.sitemap}
2013-04-26 10:03:04 +08:00
{template sitemap}
<?xml version="1.0"?>{\n}
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
2014-05-08 11:37:10 -04:00
{foreach $url in $content.urls}
2013-04-26 10:03:04 +08:00
<url>
2013-04-28 10:11:38 -04:00
<loc>{$config.domain}/{$url}</loc>
2013-04-27 02:13:56 +08:00
<lastmod>{$pubdate}</lastmod>
2013-04-26 10:03:04 +08:00
</url>
{/foreach}
</urlset>
{/template}