undefined Resultados
(function() {
var isEnglish = window.location.pathname.indexOf('/en/') !== -1;
var schemaElement = document.getElementById('seo-schema');
if (schemaElement) {
var schemaData = {
"@context": "https://schema.org",
"@type": "Product",
"image": "https://icdbcdn.com",
"brand": {
"@type": "Brand",
"name": "Luxury Villas Playa Blanca"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"bestRating": "5",
"worstRating": "1",
"ratingCount": "126"
}
};
if (isEnglish) {
schemaData.name = "Villa Amana & Ocean Breeze | Luxury Villas in Playa Blanca";
schemaData.description = "Newly renovated 5-star luxury villa in Playa Blanca, Lanzarote for up to 10 guests. Private heated pool and Jacuzzi with stunning sea views.";
} else {
schemaData.name = "Villa Amana & Ocean Breeze | Luxusvillen in Playa Blanca";
schemaData.description = "Exklusiver Urlaub auf Lanzarote: Wählen Sie die Villa Amana für 10 Personen oder die Villa Ocean Breeze für 4 Gäste. Jetzt Bestpreis direkt beim Gastgeber!";
}
schemaElement.text = JSON.stringify(schemaData);
}
})();