The instructor Juan Carlos Peinado has summoned to declare as a witness the Minister of Presidency, Justice and Relations with the Cortes, Félix Bolaños, on the 16th to ask him about the hiring of the advisor of Begoña Gómez, wife of the President of the Government, investigated by him. According to legal sources, the magistrate wants to ask this government member about the hiring of the advisor of Gómez, Cristina Álvarez, investigated in the issue of the chair at the Complutense University of Madrid (UCM).
This diligence is part of a new separate piece, according to these sources. Although initially the head of the Court of Instruction number 41 of Madrid cited this advisor, Cristina Álvarez, as a witness, soon changed his status to investigated, at the request of the popular accusation represented by the association will be heard. Hairstyle considers that there are indications against Álvarez of a possible crime of influence peddling and another of corruption in business, by intermediating in the name of Gomez with companies that had to subsidize the chair. Less than a month ago, the magistrate refused to change his status to investigated in the face of the argument that the fact that Cristina Álvarez has acted as a advisor to Gómez in efforts for the extraordinary chair that he co -directed at the Complutense University of Madrid (UCM) did not make him suspicious of the crime of traffic of influences or embezzlement of public flows.
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();