mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
734 B
Scheme
22 lines
734 B
Scheme
<?xml version="1.0"?>
|
|
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>$Title</title>
|
|
<link>$Link</link>
|
|
<atom:link href="$Link" rel="self" type="application/rss+xml" />
|
|
<description>$Description.XML</description>
|
|
|
|
<% loop $Entries %>
|
|
<item>
|
|
<title>$Title.XML</title>
|
|
<link>$AbsoluteLink</link>
|
|
<% if $Description %><description>$Description.AbsoluteLinks.XML</description><% end_if %>
|
|
<% if $Date %><pubDate>$Date.Rfc822</pubDate>
|
|
<% else %><pubDate>$Created.Rfc822</pubDate><% end_if %>
|
|
<% if $Author %><dc:creator>$Author.XML</dc:creator><% end_if %>
|
|
<guid>$AbsoluteLink</guid>
|
|
</item>
|
|
<% end_loop %>
|
|
</channel>
|
|
</rss>
|