created colloque 2024 theme
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user