This commit is contained in:
Bryan Ramos 2026-03-23 00:56:25 -04:00
parent 9576fe3e3f
commit f214ff3ada
20 changed files with 132 additions and 182 deletions

23
sitemap.xml Normal file
View file

@ -0,0 +1,23 @@
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{ site.url }}/</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
<priority>1.0</priority>
</url>
<url>
<loc>{{ site.url }}/blog</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
<priority>0.8</priority>
</url>
{% for post in site.posts %}
<url>
<loc>{{ post.url | absolute_url }}</loc>
<lastmod>{{ post.date | date: '%Y-%m-%d' }}</lastmod>
<priority>0.6</priority>
</url>
{% endfor %}
</urlset>