fibable/views/rss.phtml

31 lines
932 B
PHTML

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="<?=$self?>" rel="self" type="application/rss+xml" />
<title><?=$title?></title>
<?php if ($has_sub_title): ?>
<description><?=$sub_title?></description>
<?php endif; ?>
<lastBuildDate><?=$last_build_date?></lastBuildDate>
<link><?=$link?></link>
<?php foreach ($items as $item): ?>
<item>
<title><?=$item->title?></title>
<description>
<![CDATA[
<?=$item->description?>
]]>
</description>
<pubDate><?=$item->pub_date?></pubDate>
<link><?=$item->url?></link>
<?php if ($has_author_email): ?>
<author><?="$author_email ($author_name)"?></author>
<?php endif; ?>
<?php foreach ($item->categories as $category): ?>
<category><?=$category?></category>
<?php endforeach; ?>
</item>
<?php endforeach; ?>
</channel>
</rss>