2008-12-05 02:51:36 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-03-20 09:45:38 +13:00
|
|
|
<?xml-stylesheet type='text/xsl' href='{$BaseHref}sitemap.xml/styleSheet'?>
|
2017-07-25 17:43:33 +05:30
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
2012-03-25 13:07:44 -03:00
|
|
|
<% loop $Items %>
|
|
|
|
<url>
|
|
|
|
<loc>$AbsoluteLink</loc>
|
2018-03-01 19:51:05 +10:00
|
|
|
<% if $LastEdited %><lastmod>$LastEdited.Rfc3339()</lastmod><% end_if %>
|
2012-11-07 19:47:18 +13:00
|
|
|
<% if $ChangeFrequency %><changefreq>$ChangeFrequency</changefreq><% end_if %>
|
2013-01-15 22:29:59 +13:00
|
|
|
<% if $GooglePriority %><priority>$GooglePriority</priority><% end_if %>
|
2017-07-25 17:43:33 +05:30
|
|
|
<% if $ImagesForSitemap %><% loop $ImagesForSitemap %>
|
|
|
|
<image:image>
|
|
|
|
<image:loc>{$AbsoluteLink}</image:loc>
|
|
|
|
</image:image>
|
|
|
|
<% end_loop %><% end_if %>
|
2012-03-25 13:07:44 -03:00
|
|
|
</url>
|
|
|
|
<% end_loop %>
|
2017-08-18 15:24:03 +12:00
|
|
|
</urlset>
|