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>
|
1819 |
mathias |
19 |
<script type="text/javascript" src="http://resources.tela-botanica.org/jquery/1.6.4/jquery-1.6.4.min.js"></script>
|
|
|
20 |
<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>
|
|
|
21 |
<script type="text/javascript" src="http://resources.tela-botanica.org/jquery/jquery-tmpl/jquery.tmpl.min.js"></script>
|
1717 |
raphael |
22 |
<script type="text/javascript" src="<?=$url_base?>modules/carto/squelettes/scripts/carto.js"></script>
|
1646 |
alex |
23 |
<script type="text/javascript">
|
|
|
24 |
//<![CDATA[
|
|
|
25 |
var departement = '<?= $departement ?>';
|
1703 |
raphael |
26 |
var pays = '<?= $pays ?>';
|
1646 |
alex |
27 |
var urlWebService = '<?= $url_web_service ?>';
|
|
|
28 |
//]]>
|
|
|
29 |
</script>
|
1814 |
mathias |
30 |
|
|
|
31 |
<!-- Google Analytics -->
|
|
|
32 |
<script>
|
|
|
33 |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
34 |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
35 |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
36 |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
37 |
ga('create', 'UA-57885-3', 'auto');
|
|
|
38 |
ga('send', 'pageview');
|
|
|
39 |
</script>
|
1646 |
alex |
40 |
</head>
|
|
|
41 |
|
|
|
42 |
<body>
|
|
|
43 |
<div id="map"></div>
|
|
|
44 |
|
|
|
45 |
<!-- Squelette du contenu de la popup -->
|
1822 |
aurelien |
46 |
<script id="tpl-structure-entete" type="text/x-jquery-tmpl">
|
|
|
47 |
<div class="popup-simple-text">Situé dans ${ville} (${code_postal})</div>
|
|
|
48 |
</script>
|
|
|
49 |
|
1646 |
alex |
50 |
<script id="tpl-structure" type="text/x-jquery-tmpl">
|
1822 |
aurelien |
51 |
<div class="description-structure">
|
1646 |
alex |
52 |
<h3 align="center">
|
1799 |
aurelien |
53 |
<a target="_blank" href="<?=$url_page_fiche?>?module=FicheStructure&id=${id}">${nom}</a>
|
1822 |
aurelien |
54 |
</h3>
|
|
|
55 |
<div class="collections">
|
1646 |
alex |
56 |
{{if collections.length > 0}}
|
|
|
57 |
<div class="popup-simple-text">Collections présentes :</div>
|
|
|
58 |
<ul>
|
|
|
59 |
{{each(index, collection) collections}}
|
|
|
60 |
<li>
|
1799 |
aurelien |
61 |
<a target="_blank" href="<?=$url_page_fiche?>?module=FicheCollection&id=${collection.id}">${collection.nom}</a>
|
1646 |
alex |
62 |
</li>
|
|
|
63 |
{{/each}}
|
|
|
64 |
</ul>
|
|
|
65 |
{{else}}
|
|
|
66 |
<div class="popup-simple-text">Aucune Collection d'herbiers recensée à ce jour</div>
|
|
|
67 |
{{/if}}
|
|
|
68 |
</div>
|
1822 |
aurelien |
69 |
<hr />
|
1646 |
alex |
70 |
</div>
|
|
|
71 |
</script>
|
|
|
72 |
<div id="structure" style="display:none"></div>
|
|
|
73 |
</body>
|
1703 |
raphael |
74 |
</html>
|