aboutsummaryrefslogtreecommitdiffstats
path: root/theme/default/html/feed/item_page.php
blob: 82568a1c27cb50b73a3621e0b611d6997c9ab3d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Feed Item Template [page]                  [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#                                                                              #
# [see documentation]                                                          #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#

$HTML = $PAGE['BODY']['HTML']();
?>
<item>
	<title><?=escapeHTML($PAGE['ATTR']['NAME'])?></title>
	<link><?=$PAGE['URL']?></link>
	<guid isPermaLink="false"><?=$PAGE['GUID']?></guid>
	<pubDate><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], '[RFC2822]')?></pubDate>
	<dc:creator><?=escapeHTML($USER['ATTR']['FULLNAME'])?></dc:creator>
	<description><?=escapeHTML(description($HTML, 400))?></description>
	<content:encoded>
		<![CDATA[
			<?=$HTML?>
		]]>
	</content:encoded>
	<?php foreach($PAGE['FILE']['LIST'] as $fileURL): ?>
		<media:content url="<?=$fileURL?>" medium="image"></media:content>
	<?php endforeach; ?>
</item>