correct Halle(Saale)

This commit is contained in:
2022-06-04 12:40:52 +02:00
parent 24a796f21a
commit 3ed4aeeb36
4 changed files with 4 additions and 6 deletions

View File

@ -194,7 +194,7 @@ URL = "forms"
[params] [params]
logo = "media/logo.png" logo = "media/logo.png"
author = "CantorTechnik AG" author = "CantorTechnik AG"
address = "Georg-Cantor-Gymnasium <br> Torstraße 13 <br> 06110 Halle(Saale)" address = "Georg-Cantor-Gymnasium <br> Torstraße 13 <br> 06110 Halle (Saale)"
route_link = "https://maps.openrouteservice.org/directions?n1=51.473292&n2=11.965606&n3=18&a=null,null,51.473292,11.965606&b=0&c=0&k1=de&k2=km" route_link = "https://maps.openrouteservice.org/directions?n1=51.473292&n2=11.965606&n3=18&a=null,null,51.473292,11.965606&b=0&c=0&k1=de&k2=km"
mobile = "+49 345 6903156" mobile = "+49 345 6903156"
email = "schulleitung@cantor-gymnasium.de" email = "schulleitung@cantor-gymnasium.de"

View File

@ -9,6 +9,6 @@ social:
icon: fa-solid fa-at icon: fa-solid fa-at
link: mailto:denys.konovalov@pm.me link: mailto:denys.konovalov@pm.me
--- ---
Ich bin ein Schüler der 8. Klasse am Georg-Cantor-Gymnasium in Halle(Saale). Ich bin ein Schüler der 8. Klasse am Georg-Cantor-Gymnasium in Halle (Saale).
Als Hobbyprogrammierer und Leiter der Arbeitsgemeinschaft CantorTechnik leite ich viele Digitalisierungsprojekte wie MeinCantor oder das Repair Café und betreue diese Internetseite. Als Hobbyprogrammierer und Leiter der Arbeitsgemeinschaft CantorTechnik leite ich viele Digitalisierungsprojekte wie MeinCantor oder das Repair Café und betreue diese Internetseite.

View File

@ -130,7 +130,7 @@ about:
title: Website im Aufbau title: Website im Aufbau
content: >- content: >-
* Hier entsteht eine neue Website für das Georg-Cantor-Gymnasium in * Hier entsteht eine neue Website für das Georg-Cantor-Gymnasium in
Halle(Saale). Halle (Saale).
* Da die Website noch im Aufbau ist, fehlen noch viele Inhalte und mehrere Bereiche. * Da die Website noch im Aufbau ist, fehlen noch viele Inhalte und mehrere Bereiche.

View File

@ -9,11 +9,9 @@ L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
}).addTo(map); }).addTo(map);
var marker = L.marker([51.473361, 11.965619]).addTo(map); var marker = L.marker([51.473361, 11.965619]).addTo(map);
//.bindPopup('Georg-Cantor-Gymnasium<br>Torstraße 13<br>06110 Halle(Saale)<br><b><a href="https://maps.openrouteservice.org/directions?n1=51.473292&n2=11.965606&n3=18&a=null,null,51.473292,11.965606&b=0&c=0&k1=de&k2=km">Route</a>')
//.openPopup();
function onMarkerClick(e) { function onMarkerClick(e) {
marker.bindPopup('Georg-Cantor-Gymnasium<br>Torstraße 13<br>06110 Halle(Saale)<br><b><a href="https://maps.openrouteservice.org/directions?n1=51.473292&n2=11.965606&n3=18&a=null,null,51.473292,11.965606&b=0&c=0&k1=de&k2=km">Route</a>').openPopup(); marker.bindPopup('Georg-Cantor-Gymnasium<br>Torstraße 13<br>06110 Halle (Saale)<br><b><a href="https://maps.openrouteservice.org/directions?n1=51.473292&n2=11.965606&n3=18&a=null,null,51.473292,11.965606&b=0&c=0&k1=de&k2=km">Route</a>').openPopup();
} }
map.on('click', onMarkerClick); map.on('click', onMarkerClick);