Skip to content

Commit

Permalink
Change default sitemap change frequency to weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
helenclx committed Aug 20, 2024
1 parent a0a1c8c commit e52eb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sitemap.xml.njk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ eleventyExcludeFromCollections: true
<url>
<loc>{{ sitemeta.siteUrl + item.url | url }}</loc>
<lastmod>{% if item.updated %}{{ item.updated.toISOString() }}{% else %}{{ item.date.toISOString() }}{% endif %}</lastmod>
<changefreq>{{ item.data.sitemap.changefreq | default("monthly") }}</changefreq>
<changefreq>{{ item.data.sitemap.changefreq | default("weekly") }}</changefreq>
<priority>{{ item.data.sitemap.priority | default(0.5) }}</priority>
</url>
{%- endfor %}
Expand Down

0 comments on commit e52eb7e

Please sign in to comment.