remove the banner
[wolnelektury.git] / src / references / templates / references / map.html
index a65224a..c067f49 100644 (file)
@@ -1,4 +1,5 @@
-{% extends "2022/base.html" %}
+{% extends "base.html" %}
+{% load cache %}
 {% load static %}
 {% load l10n %}
 
   <link rel="stylesheet" type="text/css" media="all" href="{% static 'contrib/leaflet-1.9.4/leaflet.css' %}">
   <link rel="stylesheet" type="text/css" media="all" href="{% static 'contrib/leaflet.markercluster-1.4.1/MarkerCluster.css' %}">
   <link rel="stylesheet" type="text/css" media="all" href="{% static 'contrib/leaflet.markercluster-1.4.1/MarkerCluster.Default.css' %}">
+  <meta property="og:type" content="website">
+  <meta property="og:title" content="Mapa Wolnych Lektur">
+  <meta property="og:image" content="{% static 'references/preview.png' %}">
+  <meta property="og:image:alt" content="Mapa miejsc w książkach na Wolnych Lekturach">
+  <meta property="og:image:width" content="1200">
+  <meta property="og:image:height" content="630">
+
 {% endblock %}
 
 
@@ -49,6 +57,7 @@
        );
    }
 
+   {% cache 60 references-map %}
    {% localize off %}
    {% for e in entities %}
    L.marker(
@@ -61,6 +70,7 @@
    ).on('click', showMarker).addTo(markers);
    {% endfor %}
    {% endlocalize %}
+   {% endcache %}
 
    map.addLayer(markers);