Subversion Repositories eFlore/Applications.coel

Rev

Rev 1791 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1646 alex 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">
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
		<title>Localisation des collections d'herbiers</title>
9
 
10
		<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
11
		<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.ico" />
12
		<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.css" />
13
		<!--[if lte IE 8]>
14
			<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.ie.css" />
15
		<![endif]-->
1717 raphael 16
		<link rel="stylesheet" href="<?=$url_base?>modules/carto/squelettes/css/carto.css" />
1646 alex 17
 
18
		<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.5/leaflet.js"></script>
19
		<script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3.5&amp;sensor=true&amp;language=fr&amp;region=FR"></script>
20
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/1.6.2/jquery-1.6.2.min.js"></script>
21
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/jquery-ui/1.8.15/js/jquery-ui-1.8.15.custom.min.js"></script>
1726 raphael 22
		<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
1717 raphael 23
		<script type="text/javascript" src="<?=$url_base?>modules/carto/squelettes/scripts/carto.js"></script>
1646 alex 24
		<script type="text/javascript">
25
		//<![CDATA[
26
			var departement = '<?= $departement ?>';
1703 raphael 27
			var pays = '<?= $pays ?>';
1646 alex 28
			var urlWebService = '<?= $url_web_service ?>';
29
		//]]>
30
		</script>
31
	</head>
32
 
33
	<body>
34
		<div id="map"></div>
35
 
36
		<!-- Squelette du contenu de la popup -->
37
		<script id="tpl-structure" type="text/x-jquery-tmpl">
38
			<div id="description-structure">
39
				<h3 align="center">
1798 aurelien 40
					<a target="_blank" href="<?=$url_page_fiche?>?module=FicheStructure&id=${id}">${nom}</a>
1646 alex 41
				</h3>
42
				<div class="popup-simple-text">Situé dans ${ville} (${code_postal})</div>
43
				<hr />
44
				<div id="collections">
45
					{{if collections.length > 0}}
46
					<div class="popup-simple-text">Collections présentes :</div>
47
					<ul>
48
					{{each(index, collection) collections}}
49
						<li>
1798 aurelien 50
							<a target="_blank" href="<?=$url_page_fiche?>?module=FicheCollection&id=${collection.id}">${collection.nom}</a>
1646 alex 51
						</li>
52
					{{/each}}
53
					</ul>
54
					{{else}}
55
					<div class="popup-simple-text">Aucune Collection d'herbiers recensée à ce jour</div>
56
					{{/if}}
57
				</div>
58
			</div>
59
		</script>
60
		<div id="structure" style="display:none"></div>
61
	</body>
1703 raphael 62
</html>