The General Staff of the Armed Forces of the Armed Forces in the morning of March 16 published a map of operations in the Kursk region, where the city of Suda is designated as not under the control of Ukrainian troops. At the same time, in the textual part of the APU General Staff about the Sudzh, the General Staff of the Russian Federation of the Russian Federation, which had taken control of Sudzhu on March 13, has not been mentioned in the war.
The analysis of the videos conducted by the Medusa showed that the Ukrainian military completely left Sudzhu on March 12. However, officially the Ukrainian command did not report the withdrawal from Sudzh. The Commander -in -Chief of the Armed Forces of the Armed Forces, Alexander Syrsky, stated on March 12 that active combat operations were ongoing in the vicinity of Sudzhi. Read also to also the Russian Army won the battle for the Kursk region? And why did this operation need an Armed Forces? Summing up the main episode of the war in 20252 days ago Read also the Russian Army won the battle for the Kursk region? And why did this operation need an Armed Forces? We summarize the results of the main episode of the war in 2025 2 days ago TETHOPECESBUCTVTTERPDFF (Tagstotranslate) News
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();