<dtml-comment>
##############################################################################
rdf10_xml.dtml

RDF ver 1.0 - for older compatibility

Copyright (c) 2003-2005 Atsushi Shibata All Rights Reserved.

	date validation by tomster(http://tomster.org/blog/28) Thanks a lot :-).
##############################################################################
</dtml-comment>
<dtml-call "RESPONSE.setHeader('content-type', 'text/xml; charset=utf-8')"><?xml version="1.0" encoding="utf-8" ?><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns="http://purl.org/rss/1.0/">
<channel rdf:about="<dtml-var blog_url>">
  <title><dtml-var title html_quote></title>
  <link><dtml-var blog_url html_quote></link>
  <description></description>
<dtml-in "getRecentEntry(limit=1)" size=1>
  <dc:date><dtml-var "DateTime(Date()).strftime('%Y-%m-%dT%H:%M:%S+09:00')"></dc:date>
</dtml-in>
  <dc:creator />
<items>
 <rdf:Seq>
  <dtml-in "getRecentEntry()">
  <rdf:li rdf:resource="<dtml-var absolute_url>" />
  </dtml-in>
 </rdf:Seq>
</items>
</channel>
<dtml-in "getRecentEntry()">
<item rdf:about="<dtml-var absolute_url >">
  <title><dtml-var title html_quote></title>
  <link><dtml-var absolute_url ></link>
  <description><dtml-var description html_quote></description>
  <dc:subject />
  <dc:creator><dtml-var Creator></dc:creator>
  <dc:date><dtml-var "DateTime(Date()).strftime('%Y-%m-%dT%H:%M:%S+09:00')"></dc:date>
</item>
</dtml-in>
</rdf:RDF>