This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
portfolio/sitemap.xml
2020-12-26 16:03:48 +00:00

20 lines
526 B
XML

---
layout: none
search: exclude
---
<?xml version="1.0" encoding="URF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in site.pages %}
{% assign page_url_end = page.url| slice: -4, 4 %}
{% if page.url != "/sitemap.xml" and page_url_end != ".css" %}
<url>
<loc>{{ page.url }}</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
{% endif %}
{% endfor %}
</urlset>