12 строки
732 B
XML
12 строки
732 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{% capture site_url %}{% if site.url %}{{ site.url }}{% else %}{{ site.github.url }}{% endif %}{% endcapture %}
|
|
{% for post in site.html_pages %}{% unless post.sitemap == false %}
|
|
<url>
|
|
<loc>{{ site_url }}{{ post.url | replace:'.html','' }}</loc>
|
|
<lastmod>{% timestamp %}{{ post.url | replace_first:'/' | replace:'.html','.md' }}{% endtimestamp %}</lastmod>
|
|
<changefreq>weekly</changefreq>
|
|
</url>
|
|
{% endunless %}{% endfor %}
|
|
</urlset>
|