Subversion Repositories eFlore/Applications.coel

Rev

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