Initial commit

This commit is contained in:
Nasir Anthony Montalvo
2025-11-13 14:48:58 -06:00
committed by GitHub
commit 526096840e
2349 changed files with 19464 additions and 0 deletions

22
utilities/sitemap.xml Normal file
View File

@@ -0,0 +1,22 @@
---
#####
# generates a sitemap based on https://www.sitemaps.org/
# to be deployed at root of collection
# only generated during production environment build
# blank if noindex: true is set in _config.yml
#####
permalink: /sitemap.xml
---
{%- if jekyll.environment == "production" and site.noindex != true -%}
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for p in site.html_pages %}{% unless page.noindex == true or layout.noindex == true %}
<url>
<loc>{{ p.url | absolute_url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>monthly</changefreq>
</url>
{% endunless %}{% endfor %}
</urlset>
{%- endif -%}