hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

sitemapindex.xml (399B)

    1 {{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
    2 <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    3   {{ range . }}
    4   <sitemap>
    5     <loc>{{ .SitemapAbsURL }}</loc>
    6     {{ if not .LastChange.IsZero }}
    7       <lastmod>{{ .LastChange.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</lastmod>
    8     {{ end }}
    9   </sitemap>
   10   {{ end }}
   11 </sitemapindex>