The vehicle remained several hours overturned until firefighters Xavier Cervera intervened a moment of rescue from the wrecked vehicle Xavier Cervera The first incidence occurred in the morning. A truck overturned when trying to load some bags of a nearby work. The vehicle was overturned on the side on the mountain side of Buenos Aires, between Comte d’Urgell and Villarroel. Evuacuation of a sick person on the facade of a farm of the corner of Buenos Aires with Villarroel Sonia Mauri Firefighters in full performance Sonia Mauri The second incidence took place early in the afternoon to very few meters from where the first one occurred. The facade of a farm located in the corner with Villarroel Street was taken by a large rescue ladder of firefighters to proceed with an evacuation by the same facade to be able to effect an assistance by the Medical Emergency Service. Show comments {“allowcomment”: “allowed”, “article”: “article-10464534”, “URL”: “https: //admin.lavanguardia.com /view /local / Barcelona /20250310 /10464534 /dia-Agitada-Calle-Buenos-Aires-Barcelona.html “,” Livefyre-Url “:” ARTICLE-10464534 “} Loading next content …
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();