2094 |
drzraf |
1 |
<!-- SYNDICATION - DEBUT -->
|
|
|
2 |
<div class="flux_RSS">
|
|
|
3 |
<?php if ($erreurs || $informations) : ?>
|
|
|
4 |
<h1>Erreur</h1>
|
|
|
5 |
<div class="contenu_RSS">
|
|
|
6 |
<b>Impossible d'afficher le flux.</b><br />
|
|
|
7 |
|
|
|
8 |
<!-- Affichage des erreurs et messages d'information : -->
|
|
|
9 |
<?php if ($erreurs) : ?>
|
|
|
10 |
<?php foreach ($erreurs as $erreur) : ?>
|
|
|
11 |
<p class="pap_erreur"><?=$erreur;?></p>
|
|
|
12 |
<?php endforeach; ?>
|
|
|
13 |
<?php endif; ?>
|
|
|
14 |
|
|
|
15 |
<?php if ($informations) : ?>
|
|
|
16 |
<?php foreach ($informations as $information) : ?>
|
|
|
17 |
<p class="pap_info"><?=$information;?></p>
|
|
|
18 |
<?php endforeach; ?>
|
|
|
19 |
<?php endif; ?>
|
|
|
20 |
</div>
|
|
|
21 |
<?php else : ?>
|
|
|
22 |
<!-- Affichage du flux RSS -->
|
|
|
23 |
<?php $flux = array(); ?>
|
|
|
24 |
<?php foreach ($sites as $site) : ?>
|
|
|
25 |
<h1><a href="<?=$site['url']?>"><?=$site['titre']?></a></h1>
|
|
|
26 |
<div class="contenu_RSS" <?=($site['id']!="") ? 'id="'.$site["id"].'"' : ""; ?>>
|
|
|
27 |
<?php foreach ($site['pages'] as $page) : ?>
|
|
|
28 |
<?php
|
|
|
29 |
//Traitement spécifique tela
|
|
|
30 |
// La ligne ci-dessous sert à enlever les "align=left" dans les images générées par spip
|
|
|
31 |
// TODO : enlever du flux RSS
|
|
|
32 |
$image = substr_replace($page['image'], ' ', strpos($page['image'], 'align='), 12);
|
|
|
33 |
?>
|
|
|
34 |
<?php
|
|
|
35 |
$date = strtotime($page['date']);
|
|
|
36 |
$titre_page = preg_replace('/^\d+-\d+ :/', '', $page['titre']);
|
|
|
37 |
?>
|
|
|
38 |
<div class="actualites1">
|
|
|
39 |
<div class="texteActualites1">
|
|
|
40 |
<?php
|
|
|
41 |
// Préparation de la variable de date en chaîne de caractères
|
|
|
42 |
$date_string = "";
|
|
|
43 |
$date_string .= $GLOBALS['jours'][date ('w', $date)];
|
|
|
44 |
$date_string .= ' '.date ('d', $date);
|
|
|
45 |
$date_string .= ' '.$GLOBALS['mois'][date('n', $date)];
|
|
|
46 |
$date_string .= ' '.date ('Y', $date);
|
|
|
47 |
?>
|
|
|
48 |
<h3><a href="<?=$page['url']?>" class="lien_ext"><?=$titre_page?></a></h3>
|
|
|
49 |
<h4>Mis en ligne <?=$date_string?> par <?=$page['author']?></h4>
|
|
|
50 |
<p><?=$page['description_light']?></p>
|
|
|
51 |
<a title="Lire la suite article" href="<?=$page['url']?>"> <span class="lire-suite">Lire la suite</span></a></p>
|
|
|
52 |
</div>
|
|
|
53 |
</div>
|
|
|
54 |
<?php endforeach; ?>
|
|
|
55 |
<?php endforeach; ?>
|
|
|
56 |
<?php if (isset($site['voirsuite'])) : ?>
|
|
|
57 |
<span class="voir-tout"><a class="orange" href="<?=$site['url']?>"><?=$site['voirsuite']?></a></span>
|
|
|
58 |
<?php endif; ?>
|
|
|
59 |
</div>
|
|
|
60 |
<?php endif; ?>
|
|
|
61 |
</div>
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
<!-- SYNDICATION - FIN -->
|