diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-11-12 18:54:19 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-11-12 18:54:19 +0100 |
commit | f04670b8a73c688f5e1ff0c27c3483dd0a480388 (patch) | |
tree | 527302ee290ceee2d24431c669c11bc879710c6a | |
parent | cf65646b9b2bb2c3372b8a231e12d22b1efd99c1 (diff) |
Fix site map XML.
Ignore-this: 27d3b609d9a6b37dd1d014dbe34e44c2
darcs-hash:d4a83e92798007a723c622460def3f81c454025c
-rwxr-xr-x | journal.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/journal.lisp b/journal.lisp index b24e169..482373e 100755 --- a/journal.lisp +++ b/journal.lisp @@ -765,7 +765,7 @@ (defun show-site-map () #.(locally-enable-sql-reader-syntax) (with-xml-output (*standard-output* :encoding "utf-8") - (with-tag ("sitemap" '(("xmlns" "http://www.sitemaps.org/schemas/sitemap/0.9"))) + (with-tag ("urlset" '(("xmlns" "http://www.sitemaps.org/schemas/sitemap/0.9"))) (with-tag ("url") (emit-simple-tags :loc (link-to :index :absolute t) :priority "0.5")) |