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