Browse Source
Merge pull request #652 from high-testing/next
specify proper sitemap schema
index-subcmd
Vincent Prouillet
GitHub
5 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
components/templates/src/builtins/sitemap.xml
-
components/templates/src/builtins/split_sitemap_index.xml
|
@@ -1,4 +1,4 @@ |
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
|
|
|
|
|
|
|
|
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> |
|
|
{% for sitemap_entry in entries %} |
|
|
{% for sitemap_entry in entries %} |
|
|
<url> |
|
|
<url> |
|
|
<loc>{{ sitemap_entry.permalink | safe }}</loc> |
|
|
<loc>{{ sitemap_entry.permalink | safe }}</loc> |
|
|
|
@@ -1,4 +1,4 @@ |
|
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> |
|
|
|
|
|
|
|
|
<sitemapindex xmlns="https://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd"> |
|
|
{% for sitemap in sitemaps %} |
|
|
{% for sitemap in sitemaps %} |
|
|
<sitemap> |
|
|
<sitemap> |
|
|
<loc>{{ sitemap }}</loc> |
|
|
<loc>{{ sitemap }}</loc> |
|
|