Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1301 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!-- BIBLIOGRAPHIE -->
<div class="bloc <? if ($premier == 'bibliographie') : echo 'allow-break'; else : echo 'no-break'; endif; ?>">
        <div class="categorie">Bibliographie</div>
        
        <!-- FLORE -->
        <? if(!empty($bibliographie['flores']['liste_flores'])) : ?>
        <div class ="no-break">
                <h2 > Flores </h2>
                <span class='citation'><?= $bibliographie['flores']['meta']['citation']?></span>
                <ul class="liste_biblio_flores allow-break">
                        <?php foreach($bibliographie['flores']['liste_flores'] as $flore) : ?>
                        <li class="item_biblio_flore"><span class="nom"> <?= $flore ?></span></li>
                        <?php endforeach; ?>
                </ul>
        </div>
        <? endif; ?>

        <!-- REFERENCES BIBLIOGRAPĤIQUES-->
        <? if(!empty($bibliographie['bibliobota']['references'] )) : ?>
        <div class ="no-break allow-break">
                <h2> Références bibliographiques </h2>
                <ul class="references_bibliographiques">
                <?php foreach($bibliographie['bibliobota']['references'] as $reference) : ?>
                        <li class="item_biblio_flore"><span class="nom"><?=$reference['reference_html']?></span></li>
                <?php endforeach; ?>
                </ul>
        </div>
        <? endif; ?>
        
        
        <!-- WIKI-->
        <? if (!empty($bibliographie['wikini']['biblio'])): ?>
        <h2> Bibliographie collaborative : </h2>
        <span> Rédaction collaborative de cette bibliograpĥie. </span>
                <div class="wiki allow-break" title="biblio">
                        <?=$bibliograhie['wikini']['biblio']?>
                </div>
        <? endif; ?>
        
        <!-- VIDE DE DONNEES -->
        <?php if ( empty($bibliographie['flores']['liste_flores']) 
        && empty($bibliographie['bibliobota']['references'] ) 
        && empty($bibliographie['wikini']['biblio'])) : ?>
        Aucune donnée.
        <?php endif; ?>
        
</div>
<br/>
<br/>