mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
929e97accf
Cleaned up related functions and general spring clean of the module. Documented example of manually setting routes through an extension class.
11 lines
449 B
Scheme
11 lines
449 B
Scheme
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 $ChangeFreq %><changefreq>$ChangeFreq</changefreq><% end_if %>
|
|
<% if $Priority %><priority>$Priority</priority><% end_if %>
|
|
</url>
|
|
<% end_loop %>
|
|
</urlset> |