“The Ukrainian and American teams resumed work, and we hope that next week we will have a substantial meeting,” the post of Zelensky says. Jackie Hinrich journalist Fox News claims that negotiations will begin on Tuesday, March 11, in the capital of Saudi Arabia, Er-Riyad. According to her, Secretary of State Rubio, Advisor to the US President Mike Walz and Special Snowman Donald Trump in the Middle East, Steve Whitkoff will participate in the United States, will participate in the negotiations. From Ukraine, the head of the president’s office Andrei Ermak will participate in the negotiations. The day before, Mike Walz said that representatives of Washington and Kyiv were discussing the date, places and participants in negotiations to stop the war. The head of the office of the President of Ukraine Andrei Ermak said that he had a telephone conversation with Walts. “We discussed further steps on the way to a fair and prolonged world. Also exchanged opinions on security and coordination of positions within the framework of bilateral relations between Ukraine and the USA. We agreed to meet our teams in the near future to continue this important work, ”he said. Who is to blame for the quarrel of Zelensky and Trump in the oval office? Did the US Presidential Administration planned everything? Or did the leader of Ukraine specifically provoked into conflict? A review of the opinions of experts who is to blame for the quarrel of Zelensky and Trump in the oval office? Did the US Presidential Administration planned everything? Or did the leader of Ukraine specifically provoked into conflict? Review of expert opinions (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();