1499 |
jpm |
1 |
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";?>
|
|
|
2 |
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
3 |
|
|
|
4 |
<title><?=$titre?></title>
|
|
|
5 |
<link href="<?=$lien_coel?>" rel="alternate" type="text/html" hreflang="fr" />
|
|
|
6 |
<link href="<?=$lien_service?>" rel="self" type="application/atom+xml"/>
|
|
|
7 |
<updated><?=$date_maj_ATOM?></updated>
|
|
|
8 |
<author>
|
|
|
9 |
<name><?=$editeur?></name>
|
|
|
10 |
</author>
|
|
|
11 |
<id><?=$guid?></id>
|
|
|
12 |
<rights>Copyright (c) <?=$annee_courante?>, <?=$editeur?></rights>
|
|
|
13 |
<generator uri="<?=$lien_coel?>" version="<?=$generateur_version?>"><?=$generateur?></generator>
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
<?php if (isset($items)) : ?>
|
|
|
17 |
<?php foreach ($items as $item) : ?>
|
|
|
18 |
<entry>
|
|
|
19 |
<id><?=$item['lien']?></id>
|
|
|
20 |
<title><?=$item['titre']?></title>
|
|
|
21 |
<link href="<?=$item['lien']?>"/>
|
|
|
22 |
<updated><?=$item['date_maj_ATOM']?></updated>
|
|
|
23 |
<author><name><?=$item['modifier_par']?></name></author>
|
|
|
24 |
<content type="xhtml" xml:lang="fr">
|
|
|
25 |
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
|
26 |
<?=$item['description'];?>
|
|
|
27 |
</div>
|
|
|
28 |
</content>
|
|
|
29 |
</entry>
|
|
|
30 |
<?php endforeach; ?>
|
|
|
31 |
<?php endif; ?>
|
|
|
32 |
|
|
|
33 |
</feed>
|