2025-02-13 10:37:29 +01:00
|
|
|
<?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>
|
2025-02-14 23:05:52 +01:00
|
|
|
<description>
|
|
|
|
<![CDATA[
|
|
|
|
<?=$item->description?>
|
|
|
|
]]>
|
|
|
|
</description>
|
2025-02-13 10:37:29 +01:00
|
|
|
<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>
|