mirror of
https://git.librezo.fr/Librezo/website.git
synced 2025-09-05 20:32:54 +02:00
Carte: prestas
This commit is contained in:
@ -24,8 +24,8 @@
|
||||
<source srcset="/img/librezo-little-white.png" media="(prefers-color-scheme: dark)" />
|
||||
<source srcset="/img/librezo-little-black.png" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
|
||||
<img decoding="async" id="header-logo" src="/img/librezo-little-black.png" alt="Librezo" aria-hidden/>
|
||||
</picture>
|
||||
<h1 class="sr-only">Librezo</h1>
|
||||
</picture>
|
||||
<h1 class="sr-only">Librezo</h1>
|
||||
</a>
|
||||
<nav id="header-menu">
|
||||
<ul>
|
||||
|
@ -10,6 +10,11 @@
|
||||
{{body|safe}}
|
||||
];
|
||||
for(i in places) {
|
||||
L.marker(places[i]).addTo(map);
|
||||
var popup = '<strong>'+places[i][1]+'</strong>';
|
||||
for(j in places[i][2]) {
|
||||
popup += '<br/>'+places[i][2][j][0]+' : <a href="mailto:'+places[i][2][j][1]+'">'+places[i][2][j][1]+'</a>';
|
||||
}
|
||||
L.marker(places[i][0]).addTo(map)
|
||||
.bindPopup(popup);
|
||||
}
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user