An ATProtocol powered blogging engine.
1<?xml version='1.0' encoding='UTF-8'?>
2<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
4 xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
5{% for post in posts %}
6 <url>
7 <loc>{{ external_base }}/posts/{{ post.slug }}</loc>
8 <lastmod>{{ post.updated_at_date }}</lastmod>
9 </url>
10{% endfor %}
11</urlset>