mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tplimpl: Output xmlns:xhtml only if there are translations available
This commit is contained in:
parent
384a6ac4bd
commit
0859d9dfe6
1 changed files with 2 additions and 2 deletions
|
@ -87,8 +87,8 @@ func (t *templateHandler) embedTemplates() {
|
|||
</channel>
|
||||
</rss>`)
|
||||
|
||||
t.addInternalTemplate("_default", "sitemap.xml", `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
t.addInternalTemplate("_default", "sitemap.xml", `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"{{ if .IsTranslated }}
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml"{{ end }}>
|
||||
{{ range .Data.Pages }}
|
||||
<url>
|
||||
<loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}
|
||||
|
|
Loading…
Reference in a new issue