In consideration of the complexity of your critical picture, the prognosis remains reserved, ”reads the note. Lee also Lee Gerard Fermín also has continued with his oxygen therapy to high flows and at night, as programmed, he will resume with non -invasive mechanical ventilation, managed with a mask. The Pope has increased respiratory physiotherapy and has begun with muscle: it is the first time that the Vatican refers to these last exercises in his daily bulletin. Today has passed the day sitting in the armchair and this morning, in the Pontifical apartment on the tenth plant of the Gemelli, he has participated in the trade of Ash Wednesday. Lee also reads Francisco has blessed the ashes and then received them with the Eucharist and then has dedicated himself to some work tasks, something he had interrupted with the last crises of the previous days. In addition, during this morning he has called the pastor of the Gaza Strip, Gabriel Romanelli, and in the afternoon he alternated rest and work. The 88 -year -old pontiff has been admitted since February 14 at the Gemelli Hospital in Rome because of bilateral pneumonia and other respiratory problems.
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();