summaryrefslogtreecommitdiff
path: root/site_builder/sitemap.py
diff options
context:
space:
mode:
Diffstat (limited to 'site_builder/sitemap.py')
-rw-r--r--site_builder/sitemap.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/site_builder/sitemap.py b/site_builder/sitemap.py
new file mode 100644
index 0000000..b70bd24
--- /dev/null
+++ b/site_builder/sitemap.py
@@ -0,0 +1,21 @@
1# vim: set filencoding=utf8
2"""
3Sitemap Generator
4
5@author: Mike Crute (mcrute@ag.com)
6@organization: American Greetings Interactive
7@date: June 05, 2010
8"""
9
10"""
11<?xml version="1.0" encoding="UTF-8"?>
12<?xml-stylesheet type="text/xsl" href="/blog/wp-content/plugins/google-sitemap-generator/sitemap.xsl"?>
13<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
14 <url>
15 <loc>http://mike.crute.org/blog/</loc>
16 <lastmod>2009-09-09T13:28:46+00:00</lastmod>
17 <changefreq>daily</changefreq>
18 <priority>1.0</priority>
19 </url>
20</urlset>
21"""