Joshua died in his home in Newport, North Carolina. Although the family did not give details of how he died, the event would have happened on March 18, but only now transcended in the media. His loved ones gave him the last goodbye on March 23 at the Camp Albemarle in Newport. “Our hearts are with his family, friends and the entire school community during this difficult time,” wrote the young man’s school on his social networks. The institution held a solidarity event to “honor the vibrant spirit” of Joshua and “the impact it had on many.” “Let’s join Josh, share stories and support each other while we celebrated the life of an extraordinary young man,” they said in another post. Joshua Jeremiah Blackledge was 16 years old and was in the third year West Carteret High School. His friends called him “Josh.” According to his obituary, Josh liked to compete in struggle and athletics in his high school team. “He had a passion for the outdoors and loved being close to the water, whether fishing or sailing with friends,” says the text, was also passionate about speed, since he liked cars, although he had predilection for trucks. He was very close to his mother Jackie Blackledge, with whom he shared the passion for gardening and the care of the patio of his house, “he had an energetic spirit and was known for his fun character. He always impressed all with his abilities and pirouettes,” said families and loved ones said that Joshua had a great “enthusiasm” and “love for life.” “That his memory brings comfort to all those who cry their death,” they said. On Tiktok, the young man had more than 1.1 million followers. In the social network he shared videos of his private life, as well as his relationship with his girlfriend Emmie. “Missing this sweet boy at this time. I would never have thought that I would be here without you,” wrote his girlfriend on social networks “Josh showed me what love really was despite that I am very young. All emotions, “he said.
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();