Russia kills 4 Syrian citizens in an attack with a missile against the port of Odesarusia has killed four Syrian citizens between 18 and 24 years old when launching a ballistic missile against the port of Odesa that has caused damage to a ship with a barbad flag that loaded wheat to transport it to Algeria, as explained by the governor of the province, Oleg Kiper. Pina, with Barbados flag, was damaged by the outbreak of a ballistic missile launched by Russia, and attached an image of a ship with the blackened case and other damages.
He adds that in addition to the four deaths, two other people have been injured, one Ukraine and another Syrian. “At the time of the attack, the ship was carrying wheat to export it to Algeria. It is a totally civil ship, ”adds Kiper, which also reports that the attack has caused damage to another ship, docks and cereal stores.“ Russia attacks the Ukraine infrastructure, particularly the ports that are involved in strengthening global food security, ”denounces the Ukrainian leader, who underlines the need for ports to be“ protected from the terror ” Ukrainian defenses reinforce and “a reliable peace and security is achieved through the power of weapons and diplomacy.” This is the first Russian lethal attack after Ukraine accepted on Tuesday the US proposal to declare fire on land, sea and air for an initial period of 30 days to which the Kremlin must now respond. (El País / EFE) (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();