aboutsummaryrefslogtreecommitdiff
path: root/templates/sitemap.xml
blob: e11846d16ee9244c1be8db89800f86fe519f6792 (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>