dimension/layouts/sitemap.xml
Seth 6d10f91047 Fixed front matter duplication. Edited default archetype.
Fixed front matter duplication in index.html and sitemap.xml.
2017-02-28 01:12:38 -05:00

8 lines
218 B
XML

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{{ $baseURL := .Site.BaseURL }}
{{ range sort .Data.Pages }}
<url>
<loc>{{ $baseURL }}#{{ .File.BaseFileName }}</loc>
</url>
{{ end }}
</urlset>