1475 |
aurelien |
1 |
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";?>
|
|
|
2 |
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
3 |
<channel>
|
|
|
4 |
<title><?=$titre?></title>
|
|
|
5 |
<link><?=$lien_cel?></link>
|
|
|
6 |
<atom:link href="<?=$lien_service?>" rel="self" type="application/rss+xml" />
|
|
|
7 |
<description><?=$description?></description>
|
|
|
8 |
|
|
|
9 |
<?php if (isset($items)) : ?>
|
|
|
10 |
<?php foreach ($items as $item) : ?>
|
|
|
11 |
<item>
|
|
|
12 |
<guid><?=$item['guid']?></guid>
|
|
|
13 |
<title><?=$item['titre']?></title>
|
|
|
14 |
<? if (isset($item['lien'])) : ?>
|
|
|
15 |
<link><?=$item['lien']?></link>
|
|
|
16 |
<? endif; ?>
|
|
|
17 |
<description><?=$item['description_encodee']?></description>
|
|
|
18 |
<category><?= $item['categorie'] ?></category>
|
|
|
19 |
<pubDate><?=$item['date_maj_RSS']?></pubDate>
|
|
|
20 |
</item>
|
|
|
21 |
<?php endforeach; ?>
|
|
|
22 |
<?php endif; ?>
|
|
|
23 |
|
|
|
24 |
</channel>
|
|
|
25 |
</rss>
|