Add sitemap v5.2.0 and social-meta-tags v0.3.0 plugins
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
{% if config.plugins.sitemap.xsl_transform %}
|
||||
<?xml-stylesheet type="text/xsl" href="{{ uri.rootUrl }}/user/plugins/sitemap/sitemap.xsl"?>
|
||||
{% endif %}
|
||||
<urlset
|
||||
xmlns="{{ config.plugins.sitemap.urlset }}"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml"
|
||||
xmlns:image="{{ config.plugins.sitemap.urlimageset }}"
|
||||
{% if config.plugins.sitemap.include_news_tags %}
|
||||
xmlns:news="{{ config.plugins.sitemap.urlnewsset }}"
|
||||
{% endif %}>
|
||||
{% for entry in sitemap %}
|
||||
<url>
|
||||
<loc>{{ entry.location|e }}</loc>
|
||||
{% if config.plugins.sitemap.include_news_tags and
|
||||
config.plugins.sitemap.standalone_sitemap_news == false and
|
||||
timestamp_within_days(entry.timestamp, config.plugin.sitemap.news_max_age_days|default(2)) and
|
||||
entry.rawroute|starts_with(config.plugins.sitemap.news_enabled_paths)
|
||||
%}
|
||||
{% include 'sitemap-extensions/news.xml.twig' %}
|
||||
{% endif %}
|
||||
{% for hreflang in entry.hreflangs %}
|
||||
<xhtml:link rel="alternate" hreflang="{{ hreflang.hreflang }}" href="{{ hreflang.href }}" />
|
||||
{% endfor %}
|
||||
{% if entry.lastmod %}
|
||||
<lastmod>{{ entry.lastmod }}</lastmod>
|
||||
{% endif %}
|
||||
{% if entry.changefreq %}
|
||||
<changefreq>{{ entry.changefreq }}</changefreq>
|
||||
{% endif %}
|
||||
{% if entry.priority %}
|
||||
<priority>{{ entry.priority|number_format(1) }}</priority>
|
||||
{% endif %}
|
||||
{% for image in entry.images %}
|
||||
{% include 'sitemap-extensions/image.xml.twig' %}
|
||||
{% endfor %}
|
||||
</url>
|
||||
{% endfor %}
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user