Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 239 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

<div id="classification">
        <h2>Taxons Supérieurs</h2>
        <table class="liste_taxons_superieurs">
                <tr>
                <th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
                </tr>
        <?php foreach($taxons_sup as $taxon) : ?>
                <tr>
                        <td><?= $taxon['rang']  ?></td>
                        <td><?= $taxon['nom_sci']  ?></td>
                        <td><?= $taxon['num_nom']  ?></td>
                </tr>
        <?php endforeach; ?>
        </table>
        
        <h2>Taxons Inférieurs</h2>
        <table class="liste_taxons_inferieurs">
                <tr>
                <th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
                </tr>
        <?php foreach($taxons_inf as $taxon) : ?>
                <tr>
                        <td><?= $taxon['rang']  ?></td>
                        <td><?= $taxon['nom_sci']  ?></td>
                        <td><?= $taxon['num_nom']  ?></td>
                </tr>
        <?php endforeach; ?>
        </table>
        <div class="conteneur_lien_metadonnees">
                <?= $meta['titre']?>
                <span class="conteneur_lien_metadonnees">
                        <a class="lien_metadonnees lien_popup" href="<?= $meta['url']; ?>">Voir toutes les metadonnées</a>
                </span>
        </div>
</div>