“A ballistic missile has hit a hotel. Just before the attack, volunteers from a humanitarian organization, citizens of Ukraine, the United States and the United Kingdom, had registered at the hotel. They survived because they managed to leave the rooms on time, ”Zelenski said through a message on their social network X, where he emphasizes that the rescue operation has been active“ all night. ”“ Unfortunately, four people have died in the attack. My condolences to their families and loved ones. In total, more than 30 people have been injured and they have all received the necessary medical care, “he stressed, before adding that” many civil buildings located around the hotel have also suffered damage. ” “There should be no pause in the pressure on Russia to stop this war and this terrorism against life,” said President Ukraine. On the other hand, the Ukrainian authorities have denounced the death of two other people in two attacks perpetrated by Russian troops in the last hours against the provinces of Járkov and Sumi, in the northeast of the country. (Tagstotranslate) Ukraine
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();