On the night of March 19, Russian troops struck the Iskander-M missiles on the territory of Ukraine, the S-300 and launched 145 shredniks of the Shakud type, also the Mittle Demives, the Air Force of the Armed Forces of the Armed Forces of the Armed Forces of the Armed Forces and drones of the Ukrainian military reported, were knocked down over the Kharkov, Poltava, Sumy, Chernogovsky, Chernihiv, Chernihiv, Chernihivskoye, Chernihiv, Chernihivskoye, Chernihivskoye, Chernogovsky, Chernihiv, Chernogovsky, Chernogovsky, Chernihivskoye, Chernogovsky, Chernihivskoye, Chernigovsky, Cherni Cherkasskaya, Kyiv, Zhytomyr, Vinnitsa, Kirovograd, Dnipropetrovsk, Zaporizhzhya and Odessa regions. One of the Russian drones fell into the roof of the regional clinical hospital in Sumy.
Windows were knocked out in the building, people were not injured, the authorities of the Sumy region said. Another drone in the early morning of March 19 fell on the roof of the Krasnopol hospital, the Sumy Regional Administration said. There, people were not injured there, the hospital’s patients and personnel are evacuated. On the night of March 19, Ukrainian drones attacked the oil equipment located near the village of Caucasus in the Krasnodar Territory. The pipeline was damaged at the oil depot, a fire occurred. The work of the enterprise is suspended. According to the operational headquarters of the Krasnodar Territory, there are no victims. The fire area, according to the operactor at 10:30 Moscow time, was 1.7 thousand square meters. The Russian Minoborne of the Russian Federation announced that during the night, “57 Ukrainian unmanned aerial vehicles were destroyed and intercepted during the night,” including 35 drones above the Kursk region, 13 over the Azov Sea of Oryol. The presidents of the United States and Russia, after which the Kremlin announced that Vladimir Putin supported a 30-day refusal to strikes the energy of Ukraine, giving the relevant team to the military. President of Ukraine Volodymyr Zelensky, commenting on the conversation of Putin and Trump, said that Kyiv would support the proposal to stop attacks on energy infrastructure. “But it cannot be that Russia will beat in our energy, and we will be silent. We will answer, ”he added. PROMP demanded a complete ceasefire in Ukraine. Putin, in negotiations with him, actually refused the results of their conversation – according to the Kremlinarramp, he demanded a complete ceasefire in Ukraine. Putin in negotiations with him actually refused the results of their conversation – according to the Kremlin version (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();