feat: reorg layouts and pages

This commit is contained in:
Devin Haska 2024-02-22 11:32:31 -08:00
parent 0b9253fb02
commit c2f112a41b
25 changed files with 91 additions and 119 deletions

13
src/sitemap.njk Normal file
View file

@ -0,0 +1,13 @@
---
permalink: /sitemap.xml
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in collections.all %}
<url>
<loc>{{ site.url }}{{ page.url | url }}</loc>
<lastmod>{{ page.date.toISOString() }}</lastmod>
</url>
{% endfor %}
</urlset>