Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
106 jpm 1
<ul id="ef-resultats-determination">
2
	<? foreach ($noms as $nnTaxon => $nom) : ?>
3
	<li style="min-height:101px;">
95 delphine 4
		<a href="<?=$nom['url']?>">
106 jpm 5
			<strong class="nom-sci-retenu"><?=$nom['nom_sci_retenu']?></strong>
6
		</a>
7
 
8
		<img src="http://localhost/service:eflore:0.1/cel/images?masque.nn=<?=$nnTaxon?>&retour.format=CXS" style="display:block;float:right;"/>
9
 
10
		<?php if (isset($nom['synonymes'])) : ?>
11
		<ul class="synonymes" style="width:50%;">
12
			<?php foreach ($nom['synonymes'] as $synonyme) : ?>
13
				<li>= <?=$synonyme?></li>
95 delphine 14
			<? endforeach; ?>
106 jpm 15
		</ul>
95 delphine 16
		<?php endif; ?>
17
	</li>
18
	<? endforeach; ?>
106 jpm 19
</ul>
20
<script>
21
//Déclenchement d'actions quand JQuery et le document HTML sont OK
22
$(document).ready(function() {
23
 
24
});
25
 
26
</script>