diff options
author | EuAndreh <eu@euandre.org> | 2024-11-17 20:15:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-17 20:18:21 -0300 |
commit | cfd0246b241cb6e58153e68f7e30ed56b9bf054b (patch) | |
tree | 206deba2cec12187e835c64b8a7172277be1a2cf /site | |
parent | rm tests/assert-frontmatter.sh (diff) | |
download | euandre.org-cfd0246b241cb6e58153e68f7e30ed56b9bf054b.tar.gz euandre.org-cfd0246b241cb6e58153e68f7e30ed56b9bf054b.tar.xz |
Remove jekyll infrastructure setup
Diffstat (limited to '')
-rw-r--r-- | sitemap.xml | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sitemap.xml b/sitemap.xml deleted file mode 100644 index 2104d39..0000000 --- a/sitemap.xml +++ /dev/null @@ -1,30 +0,0 @@ ---- ---- -<?xml version="1.0" encoding="UTF-8"?> -<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> - {% for coll in site.all_collections %} - {% for page in site[coll] %} - {% comment %} - page ref is nil for generated pages, such - as post.html.1.txt code snippets - {% endcomment %} - {% if page.ref != nil %} - <url> - <loc>{{ site.url }}{{ page.url }}</loc> - {% assign ref=page.ref %} - {% if page.ref == 'root' %} - {% assign ref='index' %} - {% endif %} - {% assign versions=site[coll] | where:"ref", ref %} - {% for version in versions %} - <xhtml:link rel="alternate" hreflang="{{ version.lang }}" href="{{ site.url }}{{ version.url }}" /> - {% endfor %} - {% if page.date != nil %} - <lastmod>{{ page.updated_at | default: page.date | date_to_xmlschema }}</lastmod> - {% endif %} - <changefreq>monthly</changefreq> - </url> - {% endif %} - {% endfor %} - {% endfor %} -</urlset> |