silverstripe-framework/templates/RSSFeed.ss
Andrew O'Neil bf8357f2ef Added anchors to page comments in rss
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39610 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-08-06 01:03:19 +00:00

21 lines
576 B
Scheme
Executable File

<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>$Title</title>
<link>$Link</link>
<description>$Description</description>
<% control Entries %>
<item>
<title>$Title</title>
<link>$AbsoluteLink</link>
<% if Description %><description>$Description.AbsoluteLinks.EscapeXML</description><% end_if %>
<% if Date %><pubDate>$Date.Rfc822</pubDate>
<% else %><pubDate>$Created.Rfc822</pubDate><% end_if %>
<% if Author %><author>$Author.XML</author><% end_if %>
<guid>$AbsoluteLink</guid>
</item>
<% end_control %>
</channel>
</rss>