aboutsummaryrefslogtreecommitdiff
path: root/templates/sitemap.xml
blob: b7a092623c7c628b822944f14a88fdfbb0428c78 (plain)
1
2
3
4
5
6
7
8
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
  {{ range $idx, $page := .Pages }}
  <url>
	  <loc>{{ $.Config.BaseURL }}/{{ $page.RelPermalink }}</loc>
	  <lastmod>{{ $page.Created.Format "2006-01-02T15:04:05" }}+00:00</lastmod>
  </url>
  {{ end }}
</urlset>