Subversion Repositories eFlore/Applications.coel

Rev

Rev 1850 | Go to most recent revision | 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" />
1842 mathias 8
 
9
		<!-- OpenGraph pour Facebook, Pinterest, Google+ -->
10
		<meta property="og:type" content="website" />
11
		<meta property="og:title" content="CoEL - Cartographie des herbiers" />
12
		<meta property="og:site_name" content="Tela Botanica" />
13
		<meta property="og:description" content="Représentation cartographique des herbiers recensés dans Collections en Ligne" />
14
		<meta property="og:image" content="http://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />
15
		<meta property="og:image:type" content="image/png" />
16
		<meta property="og:image:width" content="256" />
17
		<meta property="og:image:height" content="256" />
18
		<meta property="og:locale" content="fr_FR" />
19
 
1646 alex 20
		<title>Localisation des collections d'herbiers</title>
21
 
1849 mathias 22
		<link rel="icon" type="image/png" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.png" />
23
		<link rel="shortcut icon" type="image/x-icon" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
1826 aurelien 24
		<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
1646 alex 25
		<!--[if lte IE 8]>
1826 aurelien 26
			<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.ie.css" />
1646 alex 27
		<![endif]-->
1717 raphael 28
		<link rel="stylesheet" href="<?=$url_base?>modules/carto/squelettes/css/carto.css" />
1826 aurelien 29
		<link rel="stylesheet" href="<?=$url_base?>modules/carto/squelettes/css/MarkerCluster.css" />
30
		<link rel="stylesheet" href="<?=$url_base?>modules/carto/squelettes/css/MarkerCluster.Default.css" />
1646 alex 31
 
1826 aurelien 32
		<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
1819 mathias 33
		<script type="text/javascript" src="http://resources.tela-botanica.org/jquery/1.6.4/jquery-1.6.4.min.js"></script>
34
		<script type="text/javascript" src="http://resources.tela-botanica.org/jquery/jquery-ui/1.8.18/js/jquery-ui-1.8.18.custom.min.js"></script>
35
		<script type="text/javascript" src="http://resources.tela-botanica.org/jquery/jquery-tmpl/jquery.tmpl.min.js"></script>
1826 aurelien 36
		<script src="<?=$url_base?>modules/carto/squelettes/scripts/leaflet.markercluster.js"></script>
1646 alex 37
		<script type="text/javascript">
38
		//<![CDATA[
39
			var departement = '<?= $departement ?>';
1703 raphael 40
			var pays = '<?= $pays ?>';
1646 alex 41
			var urlWebService = '<?= $url_web_service ?>';
1834 aurelien 42
			var clustering = '<?= $clustering ?>';
1646 alex 43
		//]]>
44
		</script>
1834 aurelien 45
		<script type="text/javascript" src="<?=$url_base?>modules/carto/squelettes/scripts/carto.js"></script>
1814 mathias 46
 
47
		<!-- Google Analytics -->
48
		<script>
49
		  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
50
		  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
51
		  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
52
		  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
53
		  ga('create', 'UA-57885-3', 'auto');
54
		  ga('send', 'pageview');
55
		</script>
1646 alex 56
	</head>
57
 
58
	<body>
1850 mathias 59
		<div id="logo-tb"><img src="http://resources.tela-botanica.org/tb/img/128x128/logo_carre_officiel.png" /></div>
1646 alex 60
		<div id="map"></div>
61
 
62
		<!-- Squelette du contenu de la popup -->
1822 aurelien 63
		<script id="tpl-structure-entete" type="text/x-jquery-tmpl">
64
			<div class="popup-simple-text">Situé dans ${ville} (${code_postal})</div>
65
		</script>
66
 
1646 alex 67
		<script id="tpl-structure" type="text/x-jquery-tmpl">
1822 aurelien 68
			<div class="description-structure">
1646 alex 69
				<h3 align="center">
1799 aurelien 70
					<a target="_blank" href="<?=$url_page_fiche?>?module=FicheStructure&id=${id}">${nom}</a>
1822 aurelien 71
				</h3>
72
				<div class="collections">
1646 alex 73
					{{if collections.length > 0}}
74
					<div class="popup-simple-text">Collections présentes :</div>
75
					<ul>
76
					{{each(index, collection) collections}}
77
						<li>
1799 aurelien 78
							<a target="_blank" href="<?=$url_page_fiche?>?module=FicheCollection&id=${collection.id}">${collection.nom}</a>
1646 alex 79
						</li>
80
					{{/each}}
81
					</ul>
82
					{{else}}
83
					<div class="popup-simple-text">Aucune Collection d'herbiers recensée à ce jour</div>
84
					{{/if}}
85
				</div>
1822 aurelien 86
				<hr />
1646 alex 87
			</div>
88
		</script>
89
		<div id="structure" style="display:none"></div>
90
	</body>
1703 raphael 91
</html>