{{- define "common/web/sitemap_xml" -}} {{.blog_url}} {{unix_milli_time_format "2006-01-02T15:04:05Z07:00" .options.birthday}} {{if (gt (len .posts) 0)}} {{range $post := .posts}} {{- if $.globalAbsolutePathEnabled}}{{$.blog_url}}{{end}}{{$post.FullPath}} {{unix_milli_time_format "2006-01-02T15:04:05Z07:00" $post.CreateTime}} {{end}} {{end}} {{$categorys := listCategory}} {{if (gt (len $categorys) 0)}} {{range $category := $categorys}} {{- if $.globalAbsolutePathEnabled}}{{$.blog_url}}{{end}}{{$category.FullPath}} {{unix_milli_time_format "2006-01-02T15:04:05Z07:00" $category.CreateTime}} {{end}} {{end}} {{ $tags := getAllTag }} {{if (gt (len $tags) 0)}} {{range $tag := $tags}} {{- if $.globalAbsolutePathEnabled}}{{$.blog_url}}{{end}}{{$tag.FullPath}} {{unix_milli_time_format "2006-01-02T15:04:05Z07:00" $tag.CreateTime}} {{end}} {{end}} {{end}}