1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <div class="col0"> <= initier en statique
<BOUCLE_agenda_evnmts(EVENEMENTS){par date}{agendafull date_debut,date_fin, mois, #ENV{annee}, #ENV{mois}} >
<div class="event-area<?php echo $iEvnt;?>">
<strong class="title"><a href="#URL_ARTICLE">#TITRE</a></strong></br>
[<em class="date">(#DATE_DEBUT|Agenda_affdate_debut_fin{#DATE_FIN,#HORAIRE})</em>]
<p>#LIEU</p>
<?php
$iEvnt++;
if ($iEvnt == 3){
$iEvnt =0;
echo '</div><div class="col<?php echo ++$nb_col;?>"> <= Poursuivre la construction à l’intérieur de la boucle, en refermant tout proprement à chaque itérations
}
?>
</div>
</BOUCLE_agenda_evnmts>
</div> <= a supprimer |