Subversion Repositories eFlore/Applications.cel

Rev

Rev 700 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 700 Rev 2202
Line 1... Line -...
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-
 
2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
-
 
3
	<head>
-
 
4
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
-
 
5
		<meta http-equiv="Content-style-type" content="text/css" />
-
 
6
		<meta http-equiv="Content-script-type" content="text/javascript" />
-
 
7
		<meta http-equiv="Content-language" content="fr" />
-
 
8
		
-
 
9
		<meta name="revisit-after" content="15 days" />
-
 
10
        <meta name="robots" content="index,follow" />
-
 
11
        <meta name="author" content="Jean-Pascal MILCENT" />
-
 
12
        <meta name="keywords" content="Statistiques, CEL, Tela Botanica, photo, liste, taxon" />
-
 
13
        <meta name="description" content="Liste des taxons possédant le plus grand nombre de photographies publiques dans le Carnet en Ligne (CEL)" />
-
 
14
		<title>Liste des taxons possédant le plus grand nombre de photographies publiques</title>
-
 
15
		<style>
-
 
16
			img{display:block;margin:0.5em;border:1px solid black;}
-
 
17
			hr.nettoyeur {clear:both;width:0;}
-
 
18
			.flottant-gauche img{float:left;}
-
 
19
		</style>
-
 
20
		
-
 
21
		<!-- Stats : Google Analytics -->
-
 
22
		<script type="text/javascript">
-
 
23
			//<![CDATA[
-
 
24
			var _gaq = _gaq || [];
-
 
25
			_gaq.push(['_setAccount', 'UA-20092557-1']);
-
 
26
			_gaq.push(['_trackPageview']);
-
 
27
			
-
 
28
			(function() {
-
 
29
			  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
-
 
30
			  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
-
 
31
			  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-
 
32
			})();
-
 
33
			//]]>
-
 
34
		</script>
-
 
35
	</head>
-
 
36
	<body>
-
 
37
		<h1>Liste des taxons possédant le plus grand nombre de photographies publiques</h1>
-
 
38
		<div class="flottant-gauche">
-
 
39
			<?php include('filtres.tpl.html') ?>
-
 
40
			<p>Classement / Nom retenu du taxon / Nombre de photographies</p>
-
 
41
			<ol>
-
 
42
			<?php foreach ($taxons as $taxon => $nbre) : ?>
-
 
43
				<li><?=$taxon?> : <?=$nbre?></li>
-
 
44
			<?php endforeach; ?>
-
 
45
			</ol>
-
 
46
		</div>
-
 
47
		<hr class="nettoyeur" />
-
 
48
		<div class="flottant-gauche">
-
 
49
			<?php include('navigation.tpl.html') ?>
-
 
50
		</div>
-
 
51
	 </body>
-
 
52
</html>
-
 
53
1
<h2>Liste des taxons possédant le plus grand nombre de photographies publiques</h2>
-
 
2
<?=(isset($utilisateur_nom_prenom) ? '<h4>utilisateur: ' . $utilisateur_nom_prenom . '</h4>' : '')?>
-
 
3
<?php include('filtres.tpl.html') ?>
-
 
4
<div class="flottant-gauche">
-
 
5
	<p>Classement / Nom retenu du taxon / Nombre de photographies</p>
-
 
6
	<ol>
-
 
7
	<?php foreach ($taxons as $taxon => $nbre) : ?>
-
 
8
		<li><?=$taxon?> : <?=$nbre?></li>
-
 
9
	<?php endforeach; ?>
-
 
10
	</ol>
-
 
11
</div>
-
 
12
54
13