Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 239 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
239 aurelien 1
<div id="classification">
331 aurelien 2
	<h2>Taxons Supérieurs</h2>
3
	<table class="liste_taxons_superieurs">
4
		<tr>
5
		<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
6
		</tr>
7
	<?php foreach($taxons_sup as $taxon) : ?>
8
		<tr>
9
			<td><?= $taxon['rang']  ?></td>
10
			<td><?= $taxon['nom_sci']  ?></td>
11
			<td><?= $taxon['num_nom']  ?></td>
12
		</tr>
13
	<?php endforeach; ?>
14
	</table>
15
 
16
	<h2>Taxons Inférieurs</h2>
17
	<table class="liste_taxons_inferieurs">
18
		<tr>
19
		<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
20
		</tr>
21
	<?php foreach($taxons_inf as $taxon) : ?>
22
		<tr>
23
			<td><?= $taxon['rang']  ?></td>
24
			<td><?= $taxon['nom_sci']  ?></td>
25
			<td><?= $taxon['num_nom']  ?></td>
26
		</tr>
27
	<?php endforeach; ?>
28
	</table>
29
	<div class="conteneur_lien_metadonnees">
30
		<?= $meta['titre']?>
31
		<span class="conteneur_lien_metadonnees">
32
			<a class="lien_metadonnees lien_popup" href="<?= $meta['url']; ?>">Voir toutes les metadonnées</a>
33
		</span>
34
	</div>
239 aurelien 35
</div>