Skip to content

Instantly share code, notes, and snippets.

@denkhaus
Created May 20, 2015 18:49
Show Gist options
  • Save denkhaus/28e6531dc82ccd5ec09f to your computer and use it in GitHub Desktop.
Save denkhaus/28e6531dc82ccd5ec09f to your computer and use it in GitHub Desktop.
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{{ range .Data.Pages }}
{{ if not .Params.private }}
<url>
<loc>{{ .Permalink }}</loc>
<lastmod>{{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}
</url>
{{ end }}
{{ end }}
</urlset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment