mirror of
https://github.com/tjtanjin/QuickTax.git
synced 2024-11-14 04:45:20 +01:00
20 lines
494 B
XML
20 lines
494 B
XML
---
|
|
layout: null
|
|
permalink: /sitemap.xml
|
|
---
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
<loc>/</loc>
|
|
<lastmod>{{ "now" | date: "%Y-%m-%d" }}</lastmod>
|
|
<changefreq>daily</changefreq>
|
|
</url>
|
|
{% for section in site.data.toc %}<url>
|
|
<loc>{{ site.baseurl }}{{ section.url }}/</loc>
|
|
<lastmod>{{ "now" | date: "%Y-%m-%d" }}</lastmod>
|
|
<changefreq>daily</changefreq>
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|