Fatah asks Hamas to listen to the Gazatis after the protests against the militia in the north of the Fatah secular movement, which makes up the National Palestinian Authority (ANP), has asked Hamas to “respond to the call of the Palestinian people in Gaza” after the protests of hundreds of gazaties in the north of the strip, which he considers “the inevitable result of years and decades of the enclave by Hamas. ”In a statement published in the official Palestinian agency Wafa, Fatah spokesman, Maher Al-Namoura, urges Hamas, who governs in Gaza, to allow the ANP to“ play his role in healing the wounds of the Gazatí people, the reconstruction of the strip and the confrontation of the displacement and deportation projects ”.
He does it after hundreds of people have manifested in Gaza against Hamas asking him to abandon power in the strip and demanding the end of the war. “The people want Hamas to Marche,” have chanted in Beit Lahia. According to Fatah spokesman, the people of Gaza “will not accept that their destiny is linked to a regional agenda” and the protests are the product “of the persecution, repression and abuse of any popular movement and demands from its military coup (of Hamas) against the Palestinian legitimacy in 2007”, when the militia dissolved the militia With the secular group and took power in the enclave by force. “Straightness, arrogant rhetoric and contradictory statements do not reflect a sense of national responsibility towards our people and our cause at a historical moment in which our people urgently need unity and solidarity against the plans of the occupation in Gaza and the West Bank, including Jerusalem,” says Fatah spokesman. (EFE) (Tagstotranslate) War
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();