fix missing slash in url in sitemap.tmpl

This commit is contained in:
Do Nhat Minh 2013-04-26 10:15:41 +08:00
parent 273d4ad6a7
commit 67594d4bca

View file

@ -5,7 +5,7 @@
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'> <urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
{foreach $url in $content.urls} {foreach $url in $content.urls}
<url> <url>
<loc>{$config.domain}{$url}</loc> <loc>{$config.domain}/{$url}</loc>
</url> </url>
{/foreach} {/foreach}
</urlset> </urlset>