answer/ui/template/sitemap.xml

14 lines
339 B
XML
Raw Normal View History

2022-12-12 16:33:08 +08:00
{{ .xmlHeader }}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
2022-12-12 18:21:03 +08:00
{{ range .list }}
2022-12-12 16:33:08 +08:00
<url>
2023-06-09 15:02:39 +08:00
{{if $.hastitle}}
2022-12-12 18:21:03 +08:00
<loc>{{$.general.SiteUrl}}/questions/{{.ID}}/{{.Title}}</loc>
2023-06-09 15:02:39 +08:00
{{else}}
<loc>{{$.general.SiteUrl}}/questions/{{.ID}}</loc>
{{end}}
2022-12-12 18:21:03 +08:00
<lastmod>{{.UpdateTime}}</lastmod>
2022-12-12 16:33:08 +08:00
</url>
2022-12-12 18:21:03 +08:00
{{ end }}
2022-12-12 16:33:08 +08:00
</urlset>