{"id":1792,"date":"2026-03-27T10:22:19","date_gmt":"2026-03-27T10:22:19","guid":{"rendered":"https:\/\/visitozieri.it\/ozieri\/"},"modified":"2026-04-24T12:42:06","modified_gmt":"2026-04-24T12:42:06","slug":"ozieri","status":"publish","type":"page","link":"https:\/\/visitozieri.it\/en\/ozieri\/","title":{"rendered":"Ozieri"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_0 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_0 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_group_0 et_pb_group et_pb_module et_flex_group et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_image_0 et_pb_image et_pb_module et_flex_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/03\/Map-pin.svg\" title=\"Map pin\" width=\"48\" height=\"48\" srcset=\"https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/03\/Map-pin.svg 48w\" class=\"wp-image-21\" \/><\/span><\/div>\n\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>Punto panoramico<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_heading_0 et_pb_heading et_pb_module et_flex_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">Ozieri<\/h1><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_1 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_1 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_heading_1 et_pb_heading et_pb_module et_flex_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">VISIT THE CITY OF OZIERI<\/h1><\/div><\/div>\n\n<div class=\"et_pb_code_0 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\"><link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\" integrity=\"sha256-p4NxAoJBhIIN+hmNHrzRCf9tD\/miZyoHS5obTRR9BMY=\" crossorigin=\"\">\n\n<link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet.markercluster@1.5.3\/dist\/MarkerCluster.css\">\n<link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet.markercluster@1.5.3\/dist\/MarkerCluster.Default.css\">\n\n\n<style>\n.marker-cluster-small,\n.marker-cluster-medium,\n.marker-cluster-large {\n  background: #F0A80059;\n}\n\n.marker-cluster-small div,\n.marker-cluster-medium div,\n.marker-cluster-large div {\n  background: #F0A800;\n  color: #fff;\n}\n\n.marker-cluster {\n  border-radius: 999px;\n}\n\n.marker-cluster div {\n  border-radius: 999px;\n  font-weight: 700;\n}\n<\/style>\n\n<script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\" integrity=\"sha256-20nQCchB9co0qIjJZRGuk2\/Z9VM+kNiyxNV1lvTlZBo=\" crossorigin=\"\"><\/script>\n\n<script src=\"https:\/\/unpkg.com\/leaflet.markercluster@1.5.3\/dist\/leaflet.markercluster.js\"><\/script>\n\n<!-- leaflet-svgicon -->\n<script src=\"https:\/\/cdn.jsdelivr.net\/gh\/iatkin\/leaflet-svgicon@latest\/svg-icon.js\"><\/script>\n\n<div id=\"places_map\"><\/div>\n\n<script defer>\ndocument.addEventListener('DOMContentLoaded', function () {\n  const mapElement = document.getElementById('places_map');\n  if (!mapElement) {\n    console.error('Elemento #places_map non trovato');\n    return;\n  }\n\n  const DEFAULT_CENTER = [40.58461715568335, 9.001676094520455];\n  const DEFAULT_ZOOM = 12;\n  const SINGLE_MARKER_ZOOM = 14;\n\n  const map = L.map('places_map').setView(DEFAULT_CENTER, DEFAULT_ZOOM);\n\n  const mapLayer = L.tileLayer('https:\/\/tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n    maxZoom: 19,\n    attribution: '&copy; <a href=\"https:\/\/www.openstreetmap.org\/copyright\">OpenStreetMap<\/a>'\n  }).addTo(map);\n\n  mapLayer.getContainer().style.blendMode = 'luminosity';\n\n  const ui = {\n    container: document.getElementById('place_info_container'),\n    closeBtn: document.getElementById('place_info_close_btn'),\n    image: document.querySelector('#place_info_image img'),\n    taxonomy: document.querySelector('#place_info_taxonomy .et_pb_text_inner'),\n    title: document.querySelector('#place_info_title h1'),\n    desc: document.querySelector('#place_info_desc .et_pb_text_inner'),\n    info: document.querySelector('#place_info_info .et_pb_text_inner')\n  };\n\n  const markersCluster = L.markerClusterGroup({\n    showCoverageOnHover: false,\n    spiderfyOnMaxZoom: true,\n    zoomToBoundsOnClick: true,\n    maxClusterRadius: 50\n  });\n\n  function sanitizeHtml(html) {\n    return typeof html === 'string' ? html : '';\n  }\n\n  function setHtml(element, html) {\n    if (!element) return;\n    element.innerHTML = sanitizeHtml(html);\n  }\n\n  function setTextAsParagraph(element, text) {\n    if (!element) return;\n    const value = typeof text === 'string' ? text.trim() : '';\n    element.innerHTML = value ? `<p>${value}<\/p>` : '';\n  }\n\n  function showInfoPanel() {\n    if (ui.container) {\n      ui.container.classList.add('visible');\n    }\n  }\n\n  function hideInfoPanel() {\n    if (ui.container) {\n      ui.container.classList.remove('visible');\n    }\n  }\n\n  function resetLazyAttributes(img) {\n    if (!img) return;\n\n    img.removeAttribute('srcset');\n    img.removeAttribute('sizes');\n    img.removeAttribute('data-src');\n    img.removeAttribute('data-lazy-src');\n    img.removeAttribute('data-srcset');\n    img.removeAttribute('data-lazy-srcset');\n  }\n\n  function updateImage(imageUrl) {\n    if (!ui.image) return;\n\n    if (imageUrl) {\n      resetLazyAttributes(ui.image);\n      ui.image.src = imageUrl;\n      ui.image.style.display = 'block';\n    } else {\n      ui.image.removeAttribute('src');\n      ui.image.style.display = 'none';\n    }\n  }\n\n  function renderPlace(place) {\n    if (!place) return;\n\n    updateImage(place.featured_image);\n    setHtml(ui.title, place.title || '');\n    setHtml(ui.desc, place.excerpt || '');\n    setHtml(ui.info, place.more_info || '');\n    setTextAsParagraph(ui.taxonomy, place.taxonomy || '');\n\n    showInfoPanel();\n  }\n\n  function bindCloseButtonOnce() {\n    if (!ui.closeBtn) {\n      console.warn('Bottone chiusura #place_info_close_btn non trovato');\n      return;\n    }\n\n    ui.closeBtn.addEventListener('click', function (event) {\n      event.stopPropagation();\n      hideInfoPanel();\n    });\n  }\n\n  function bindOutsideClickClose() {\n    document.addEventListener('click', function (event) {\n      if (!ui.container) return;\n      if (!ui.container.classList.contains('visible')) return;\n\n      const clickedInsidePanel = ui.container.contains(event.target);\n      const clickedInsideMap = mapElement.contains(event.target);\n\n      if (!clickedInsidePanel && !clickedInsideMap) {\n        hideInfoPanel();\n      }\n    });\n\n    if (ui.container) {\n      ui.container.addEventListener('click', function (event) {\n        event.stopPropagation();\n      });\n    }\n  }\n\n  async function fetchPlaces() {\n    const endpoint = 'https:\/\/visitozieri.it\/wp-json\/wp\/v2\/place?_embed';\n\n    try {\n      const response = await fetch(endpoint);\n\n      if (!response.ok) {\n        throw new Error(`HTTP error ${response.status}`);\n      }\n\n      const data = await response.json();\n\n      if (!Array.isArray(data)) {\n        console.warn('La risposta API non \u00e8 un array:', data);\n        return [];\n      }\n\n      return data\n        .filter(post => \n          post._embedded?.['wp:term']?.[0]?.some(term => term.slug === 'ozieri')\n        )\n        .map(post => ({\n        id: post.id,\n        title: post.title?.rendered || '',\n        link: post.link || '',\n        excerpt: post.excerpt?.rendered || '',\n        latitude: post.latitude ? parseFloat(post.latitude) : null,\n        longitude: post.longitude ? parseFloat(post.longitude) : null,\n        more_info: post.more_information || '',\n        featured_image: post._embedded?.['wp:featuredmedia']?.[0]?.source_url || null,\n        taxonomy: post._embedded?.['wp:term']?.[0]?.map(term => term.name).join(', ') || ''\n      }));\n    } catch (error) {\n      console.error('Errore nel fetch dei place:', error);\n      return [];\n    }\n  }\n\n  function isValidCoordinate(value) {\n    return typeof value === 'number' && !isNaN(value);\n  }\n\n  function getPlaceIcon(place) {\n    \/\/ SVG icon plugin\n    return new L.DivIcon.SVGIcon({\n      iconSize: [32, 48],\n      iconAnchor: [16, 48],\n      popupAnchor: [0, -48],\n      circleText: '',\n      color: '#F0A800',\n      fillColor: '#F0A800',\n      fillOpacity: 0.8,\n      weight: 2\n    });\n  }\n\n  function createPlaceMarkers(places) {\n    const validLatLngs = [];\n\n    places.forEach(place => {\n      if (!isValidCoordinate(place.latitude) || !isValidCoordinate(place.longitude)) {\n        console.warn('Place con coordinate non valide:', place);\n        return;\n      }\n\n      const latLng = [place.latitude, place.longitude];\n\n      const marker = L.marker(latLng, {\n        icon: getPlaceIcon(place)\n      });\n\n      marker.on('click', function () {\n        renderPlace(place);\n      });\n\n      markersCluster.addLayer(marker);\n      validLatLngs.push(latLng);\n    });\n\n    map.addLayer(markersCluster);\n\n    if (validLatLngs.length > 1) {\n      map.fitBounds(validLatLngs, {\n        padding: [40, 40]\n      });\n    } else if (validLatLngs.length === 1) {\n      map.setView(validLatLngs[0], SINGLE_MARKER_ZOOM);\n    } else {\n      map.setView(DEFAULT_CENTER, DEFAULT_ZOOM);\n    }\n  }\n\n  async function initMapPlaces() {\n    bindCloseButtonOnce();\n    bindOutsideClickClose();\n\n    const places = await fetchPlaces();\n\n    if (!places.length) {\n      console.warn('Nessun place trovato');\n      map.setView(DEFAULT_CENTER, DEFAULT_ZOOM);\n      return;\n    }\n\n    createPlaceMarkers(places);\n  }\n\n  initMapPlaces();\n});\n<\/script><\/div><\/div>\n\n<div class=\"et_pb_group_1 et_pb_group et-last-child et_pb_module et_grid_group et_pb_css_mix_blend_mode_passthrough\" id=\"place_info_container\">\n<div class=\"et_pb_image_1 et_pb_image et_pb_module et_flex_module\" id=\"place_info_image\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/02\/a845e3ca016a61be0698d53115bc61a7da3a8a1a-scaled.jpg\" title=\"a845e3ca016a61be0698d53115bc61a7da3a8a1a\" width=\"2560\" height=\"2289\" srcset=\"https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/02\/a845e3ca016a61be0698d53115bc61a7da3a8a1a-scaled.jpg 2560w, https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/02\/a845e3ca016a61be0698d53115bc61a7da3a8a1a-1280x1145.jpg 1280w, https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/02\/a845e3ca016a61be0698d53115bc61a7da3a8a1a-980x876.jpg 980w, https:\/\/visitozieri.it\/wp-content\/uploads\/2026\/02\/a845e3ca016a61be0698d53115bc61a7da3a8a1a-480x429.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-13\" \/><\/span><\/div>\n\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\" id=\"place_info_taxonomy\"><div class=\"et_pb_text_inner\"><p>TAG<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_icon_0 et_pb_icon et_pb_module et_flex_module\" id=\"place_info_close_btn\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">5<\/span><\/span><\/div>\n\n<div class=\"et_pb_group_2 et_pb_group et-last-child et_pb_module et_flex_group et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_heading_2 et_pb_heading et_pb_module et_flex_module\" id=\"place_info_title\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">TITOLO<\/h1><\/div><\/div>\n\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\" id=\"place_info_desc\"><div class=\"et_pb_text_inner\"><p>DESCRIZIONE<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_3 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\" id=\"place_info_info\"><div class=\"et_pb_text_inner\"><p>ULTERIORI INFORMAZIONI<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_2 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_2 et_pb_column et-last-child et_grid_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_group_3 et_pb_group et-last-child et_pb_module et_flex_group et_pb_css_mix_blend_mode_passthrough event-card\"><div class=\"entry\"><h2 class=\"not-found-title\">No Results Found.<\/h2><p>The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.<\/p><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_3 et_pb_section et_section_regular et_flex_section\"><div class=\"entry\"><h2 class=\"not-found-title\">No Results Found.<\/h2><p>The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.<\/p><\/div><\/div>\n\n<div class=\"et_pb_section_4 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_4 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_4 et_pb_column et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_code_1 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\"><div id=\"daf-date-filter\" class=\"daf-date-filter\">\n  <div class=\"daf-date-filter__title\">\n    <p>\n  FILTER BY ENTERING DATES\n    <\/p>\n  <\/div>\n  <div class=\"daf-date-filter__field\">\n    <label for=\"daf-date-from\">FROM<\/label>\n    <input type=\"date\" id=\"daf-date-from\">\n  <\/div>\n  <div class=\"daf-date-filter__field\">\n    <label for=\"daf-date-to\">TO<\/label>\n    <input type=\"date\" id=\"daf-date-to\">\n  <\/div>\n  <div class=\"daf-date-filter__actions\">\n    <button type=\"button\" id=\"daf-date-apply\" class=\"et_pb_button\">FILTER<\/button>\n    <button type=\"button\" id=\"daf-date-reset\" class=\"et_pb_button daf-date-filter__reset-btn\">RESET<\/button>\n  <\/div>\n<\/div>\n\n<script defer>\n(function () {\n    'use strict';\n\n    \/* \u2500\u2500 Configurazione \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n    var META_START = 'start_date';\n    var META_END = 'end_date';\n    var DATE_MIN = '00010101';\n    var DATE_MAX = '99991231';\n\n    \/* \u2500\u2500 Registra parametri URL da preservare \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n    window.dafPreserveURLParams = window.dafPreserveURLParams || [];\n    if (window.dafPreserveURLParams.indexOf('daf_from') === -1) {\n        window.dafPreserveURLParams.push('daf_from', 'daf_to');\n    }\n\n    \/* \u2500\u2500 Elementi DOM \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n    var widget = document.getElementById('daf-date-filter');\n    var fromEl = document.getElementById('daf-date-from');\n    var toEl = document.getElementById('daf-date-to');\n    var applyBtn = document.getElementById('daf-date-apply');\n    var resetBtn = document.getElementById('daf-date-reset');\n    var statusEl = document.getElementById('daf-date-status');\n\n    if (!widget || !fromEl || !toEl || !applyBtn) return;\n\n    \/* \u2500\u2500 Utilit\u00e0 \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n\n    \/** YYYY-MM-DD \u2192 YYYYMMDD *\/\n    function toYMD(dateStr) {\n        return dateStr.replace(\/-\/g, '');\n    }\n\n    \/** Aggiorna window.dafExternalFilters in base agli input date *\/\n    function syncExternalFilters() {\n        var from = fromEl.value;\n        var to = toEl.value;\n        var filters = [];\n\n        if (to) {\n            filters.push({ name: META_START, type: 'meta', val: DATE_MIN + ';' + toYMD(to) });\n        }\n        if (from) {\n            filters.push({ name: META_END, type: 'meta', val: toYMD(from) + ';' + DATE_MAX });\n        }\n\n        window.dafExternalFilters = filters;\n    }\n\n    \/** Aggiorna i parametri URL daf_from \/ daf_to *\/\n    function syncURL() {\n        var url = new URL(window.location.href);\n        var from = fromEl.value;\n        var to = toEl.value;\n\n        if (from) url.searchParams.set('daf_from', from);\n        else url.searchParams.delete('daf_from');\n        if (to) url.searchParams.set('daf_to', to);\n        else url.searchParams.delete('daf_to');\n\n        window.history.replaceState(null, '', url.toString());\n    }\n\n    \/** Delega tutto al plugin *\/\n    function triggerPlugin() {\n        if (typeof window.divi_find_filters_to_filter === 'function') {\n            window.divi_find_filters_to_filter();\n        }\n    }\n\n    \/* \u2500\u2500 Azioni \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n\n    function applyFilter() {\n        if (!fromEl.value && !toEl.value) {\n            if (statusEl) statusEl.textContent = 'Seleziona almeno una data.';\n            return;\n        }\n        syncExternalFilters();\n        syncURL();\n        triggerPlugin();\n    }\n\n    function resetFilter() {\n        fromEl.value = '';\n        toEl.value = '';\n        if (statusEl) statusEl.textContent = '';\n        window.dafExternalFilters = [];\n        syncURL();\n        triggerPlugin();\n    }\n\n    \/* \u2500\u2500 Event Listeners \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n\n    applyBtn.addEventListener('click', applyFilter);\n    if (resetBtn) resetBtn.addEventListener('click', resetFilter);\n    fromEl.addEventListener('keydown', function (e) { if (e.key === 'Enter') applyFilter(); });\n    toEl.addEventListener('keydown', function (e) { if (e.key === 'Enter') applyFilter(); });\n\n    \/* \u2500\u2500 Ripristino da URL \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n    var params = new URLSearchParams(window.location.search);\n    var savedFrom = params.get('daf_from');\n    var savedTo = params.get('daf_to');\n\n    if (savedFrom || savedTo) {\n        if (savedFrom) fromEl.value = savedFrom;\n        if (savedTo) toEl.value = savedTo;\n        syncExternalFilters();\n        \/\/ Il plugin applicher\u00e0 i filtri autonomamente al suo init\n        \/\/ grazie a dafExternalFilters gi\u00e0 popolato\n    }\n\n})();\n<\/script><\/div><\/div>\n\n<div class=\"de_ajax_filter_filter_posts_0 de_ajax_filter_filter_posts divi-location-side show_reset_always hide_reset_btn side_by_side_btns et_pb_module\"><div class=\"et_pb_module_inner\">        <div id=\"divi_filter\" class=\"et_pb_contact divi_filter_module updatetype-update_field divi_filter_757848 sync_filter_item hide_reset_btn show_reset_always\" data-settings='{\"scrollto\" : \"off\",\"scrollto_where\" : \"all\",\"scrollto_section\" : \"main-archive-loop\",\"scrollto_fine_tune\" : \"0px\"}'  data-toggle-start-state=\"first_open\" data-countself=\"on\" data-filter-initial-only=\"off\" data-filter-param-container=\"\">\n            <form>\n                <div class=\"ajax-filter-results\"><\/div>\n                <div class=\"divi-filter-container grid_mobile_column_1 \">\n                    \n<div class=\"de_ajax_filter_filter_posts_item_0 de_ajax_filter_filter_posts_item et_pb_de_mach_filter_posts et_pb_de_mach_search_posts_item hide_show_count cat_prefix no_filter_params inline_checkboxes et_flex_column_24_24 et_pb_column hide_module_for_empty swatch-align-left et_pb_module\"><div class=\"et_pb_module_inner\">        <div class=\"search_filter_cont filter_posts_item_496163\" id=\"\" data-count=\"100\"  data-value-type=\"string\" data-type=\"taxonomy\" data-post-type=\"event\"  data-child-mode=\"off\" data-hide-empty=\"true\" data-sub-prefix=\"--\" data-show-available=\"off\" data-field-type=\"radio\" data-radio-select=\"radio\" data-radio-all-hide=\"off\" data-radio-style=\"buttons\" data-radio-all-text=\"TUTTI I TAG\" data-filter-condition=\"or\">\n            <div class=\"et_pb_contact_field \" data-type=\"radio\" data-filtertype=\"radio\">\n    <div class=\"et_pb_contact_field_options_wrapper check_radio_normal radio-choice-radio divi-radio-buttons\">\n        <fieldset>\n            <legend class=\"et_pb_contact_field_options_title divi-hide\">Tags<\/legend>\n            <div class=\"et_pb_contact_field_options_list divi-filter-item divi-checkboxsingle  \" data-filter-count=\"on\" data-show-empty=\"off\" data-filter-option=\"post_tag\" data-filter-name=\"post_tag\" data-limitsize=\"\" style=\"max-height:;\" >\n\n                                    <span class=\"et_pb_contact_field_radio\">\n                        <input type=\"radio\" id=\"post_tag_all_496163\" class=\"divi-acf input option-all\" data-filtertype=\"divi-checkboxsingle\" value=\"\" name=\"post_tag_496163\" data-name=\"post_tag\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"radio\" >\n                                                                        <label class=\"radio-label\" data-value=\"all\" for=\"post_tag_all_496163\" title=\"All\"><i><\/i>TUTTI I TAG<\/label>\n                                        <\/span>\n                \n                                <\/div>\n            <\/div>\n        <\/fieldset>\n    <\/div>        <\/div>\n        <\/div><\/div>\n                <\/div>\n            <\/form>\n\n            <div class=\"button_container \">\n                                    <a class=\"reset-filters et_pb_button\" href=\"\" style=\"pointer-events: auto; cursor: pointer;\">Reset<\/a>\n            <\/div>\n\n            <div class=\"filter-param-tags\"><\/div>\n\n        <\/div>\n        <\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_5 et_pb_column et-last-child et_grid_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_group_6 et_pb_group et-last-child et_pb_module et_flex_group et_pb_css_mix_blend_mode_passthrough event-card\"><div class=\"entry\"><h2 class=\"not-found-title\">No Results Found.<\/h2><p>The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.<\/p><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_5 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_5 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_6 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_heading_7 et_pb_heading et_pb_module et_flex_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">OZIERI NEWS<\/h1><\/div><\/div>\n\n<div class=\"et_pb_group_10 et_pb_group et-last-child et_pb_module et_grid_group et_pb_css_mix_blend_mode_passthrough\"><div class=\"entry\"><h2 class=\"not-found-title\">No Results Found.<\/h2><p>The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.<\/p><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1792","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/pages\/1792","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/comments?post=1792"}],"version-history":[{"count":1,"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/pages\/1792\/revisions"}],"predecessor-version":[{"id":1793,"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/pages\/1792\/revisions\/1793"}],"wp:attachment":[{"href":"https:\/\/visitozieri.it\/en\/wp-json\/wp\/v2\/media?parent=1792"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}