A short link on March 17, 2025, 14:53 A military court in absentia sentenced to 25 years in a colony of mercenary from Georgia George Kesareli* for the invasion of the Kursk region as part of the Caucasian Legion. According to the investigation, Caesarels committed armed attacks on the settlements of the Kursk region, fired at the Russian Armed Forces, residential buildings and other civil infrastructure facilities, and also intimidated civilians.
He received his mercenary and terrorist activities every month from the Ukrainian authorities at least $ 1 thousand “The court sentenced the Caesarels to 25 years in prison with the deprivation of liberty with serving The first five years in prison, and the remaining part of the punishment, in a penal colony of a maximum regime, ”the report said. The Military Court pronounced an in absentia in a criminal case against a 32-year-old Georgian citizen Lasha Chigladze, who was found guilty of the attack and mercenarism of the Armed Forces of the Armed Forces. Kyiv regime Rodion Miroshnik said that Moscow is associated with countries whose mercenaries have been seen in the Kursk region.* Mounted in the list of terrorists and extremists of Rosfinmonitoring. The losit in the text? Highlight it and click “Ctrl + Enter” Subscribe to our channel in Zen
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();