created colloque 2024 theme

This commit is contained in:
2024-03-07 13:13:44 +01:00
parent 96da96e96d
commit ff8712ff3c
303 changed files with 45057 additions and 0 deletions
@@ -0,0 +1,22 @@
{#
/**
* @file
* Default microdata theme implementation for a geolocation with latitude, longitude.
*
* Available variables:
* - lat: The latitude value.
* - lng: The longitude value.
*
* @see template_preprocess()
*
* @ingroup themeable
*/
#}
<span typeof="Place">
<span property="geo" typeof="GeoCoordinates">
<meta property="latitude" content="{{ lat }}">
<meta property="longitude" content="{{ lng }}">
</span>
<div id="mapid"></div>
{# <span class="geolocation-latlng">{{ lat }}, {{ lng }}</span> #}
</span>