mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-11 08:52:27 +08:00
10 lines
357 B
XML
10 lines
357 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{{range .Artcs}}
|
|
<url>
|
|
<loc>{{if $.EnableHttps}}https{{else}}http{{end}}://{{$.Domain}}/post/{{.Slug}}.html</loc>
|
|
<lastmod>{{dateformat .CreateTime "2006-01-02"}}</lastmod>
|
|
<priority>0.6</priority>
|
|
</url>
|
|
{{end}}
|
|
</urlset> |