---
# Remember to set production_url in your _config.yml file!
title : Sitemap
---
<?xml version="1.0" encoding="utf-8"?>
<urlset>
{% for page in site.pages %}
	<url>
		<loc>{{ site.production_url }}{{ page.url }}</loc>
		<changefreq>daily</changefreq>
		<priority>0.5</priority>
	</url>
{% endfor %}
{% for post in site.posts %}
	<url>
		<loc>{{ site.production_url }}{{ post.url }}</loc>
		<changefreq>always</changefreq>
		<priority>1.0</priority>
	</url>
{% endfor %}
</urlset>