mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
8bbc14ee23
Misc upgrade of module code so that site map.xml provides a index site map file based on the standards. Moved configuration vars to the Config API. Considering how large a change this is, I've branched a 1.0 release off in github.
12 lines
565 B
Scheme
12 lines
565 B
Scheme
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?xml-stylesheet type='text/xsl' href='{$BaseHref}googlesitemaps/templates/xml-sitemap.xsl'?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<% loop $Items %>
|
|
<url>
|
|
<loc>$AbsoluteLink</loc>
|
|
<% if $LastEdited %><lastmod>$LastEdited.Format(c)</lastmod><% end_if %>
|
|
<% if $ChangeFrequency %><changefreq>$ChangeFrequency</changefreq><% end_if %>
|
|
<% if $GooglePriority %><priority>$GooglePriority</priority><% end_if %>
|
|
</url>
|
|
<% end_loop %>
|
|
</urlset> |