The four occupants of two vehicles, two women and two men of 21 years and natural in Madrid, died at night between Saturday and Sunday after the cars in which they were traveling through the CA-643, at the height of the port of Lunada (Cantabria), left the road and wake up on a hillside of about 200 meters high. The victims, who are now at the Institute of Forensic Medicine, at the Marqués de Valdecilla University Hospital in Santander, were friends who were going to spend the weekend in a rural accommodation of the Pasiegos valleys, according to sources of the Cantabria Government Delegation.
Four other friends (three women and one man), who were traveling in a car behind, were unharmed. All resided in the Madrid district of Vallecas. The 112 Emergency Care Center of the Government of Cantabria received the warning call around 22.00 on Saturday from the mobile phone of one of the occupants of the wrecked vehicle, which sent an automatic alert after detecting the impact. 4 people featured after getting out of the road and clears the vehicle in which they were traveling through the port of lunadabos of the Villacarriedo park and rescue technicians Cantabria went to the event that occurred last night pic.twitter.com/fajgksrfnM— 112 Cantabria (@112cantabria) March 16, 2025 According to the 112 of Cantabria in a statement, to the scene of the events were displaced firefighters of the Emergency Park of Villacarriedo, Santander Firefighters, Road Maintenance Personnel, the Civil Guard of Traffic and the Civil Guard 061. In addition, they participated in the rescue work of the wrecked vehicle and the deceased rescue technicians of the Government of Cantabria, because the car was in an area of very difficult access. (Tagstotranslate) Spain
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();