Files
start9.com/src/sitemap.njk
Lucy C b495794a03 Fix/optimizations (#3)
* revamped js/css asset build

* update favicon compilation and color; cleanup package.json

* fix spacing

* update social media display and references

* adjust about page sizing and mobile display

* update jobs and page titles

* abstract links to single source, small style fixes

* adjust footer

* update pro viddeo page and seo

* seo and video fixes

* fix seo display

* move tor link to footer

* sizing adjustments and add hosted video

* video and sizing adjustments

* wip video

* final video

* update pro link

* temp fix for ticker start

* update link, add auto orient, remove video border

* fix contact form submission and mobile submit
2022-11-08 13:31:00 -07:00

15 lines
508 B
Plaintext

---
eleventyExcludeFromCollections: true
permalink: /public/sitemap.xml
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for item in collections.all %}
<url>
<loc>{{ site.url }}{{ item.url }}</loc>
<lastmod>{{ item.date | date("yyyy-MM-dd")}}</lastmod>
<changefreq>{{ item.data.sitemapChangefreq | default("monthly") }}</changefreq>
<priority>{{ item.data.sitemapPriority | default(0.8) }}</priority>
</url>
{% endfor %}
</urlset>