mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-31 04:23:42 +00:00
* 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
15 lines
508 B
Plaintext
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> |