Line 27... |
Line 27... |
27 |
<!-- Affichage du flux RSS -->
|
27 |
<!-- Affichage du flux RSS -->
|
28 |
<?php $flux = array(); ?>
|
28 |
<?php $flux = array(); ?>
|
29 |
<?php foreach ($sites as $site) : ?>
|
29 |
<?php foreach ($sites as $site) : ?>
|
30 |
<h1><?=$site['titre']?></h1>
|
30 |
<h1><?=$site['titre']?></h1>
|
31 |
<div class="contenu_RSS" id="<?=$site['id']?>">
|
31 |
<div class="contenu_RSS" id="<?=$site['id']?>">
|
32 |
<a href="http://www.tela-botanica.org/eflore/cel2/jrest/CelSyndicationObservation/par-defaut/atom" class="suivre-observations" title="Suivre les observations" onclick="window.open(this.href);return false;">Suivre les observations</a>
|
32 |
<a href="/eflore/cel2/jrest/CelSyndicationObservation/par-defaut/atom" class="suivre-observations" title="Suivre les observations" onclick="window.open(this.href);return false;">Suivre les observations</a>
|
33 |
<?php foreach ($site['pages'] as $page) : ?>
|
33 |
<?php foreach ($site['pages'] as $page) : ?>
|
34 |
<?php
|
34 |
<?php
|
35 |
// Formatage date
|
35 |
// Formatage date
|
36 |
$timestamp = strtotime($page['date']);
|
36 |
$timestamp = strtotime($page['date']);
|
37 |
$page['date'] = strftime('%A %d %B %Y', $timestamp);
|
37 |
$page['date'] = strftime('%A %d %B %Y', $timestamp);
|