Casper Kelly, of Too Many Cooks fame, will make his feature film debut with Buddy.
Starring Cristin Milioti, Delaney Quinn, Topher Grace, Keegan-Michael Key, Michael Shannon, and Patton Oswalt, the film takes place inside the colorful world of It’s Buddy!, a beloved children’s show led by a bright orange unicorn who teaches kids about happiness, friendship, and life. But when one child refuses to play along, Buddy’s smile starts to look a little less friendly.
Buddy will be released in theaters on August 28th through Roadside Attractions.
`;
container.insertAdjacentHTML(‘beforeend’, marker + html);
loadBtn.innerHTML = ‘Load more News Bites’;
loadBtn.disabled = false;
window.EncoreAdSystem.observerAds();
embedInitiate();
// Fire GA page_view event for each load
const cleanPath = window.location.pathname.replace(//page/d+$/, ”).replace(//$/, ”);
const virtualPagePath = mfCurrentPage === 1
? cleanPath
: `${cleanPath}/page/${mfCurrentPage}`;
// Only update browser URL for page 2+
if (mfCurrentPage > 1) {
const tempDiv = document.createElement(‘div’);
tempDiv.innerHTML = html;
const firstPostLink = tempDiv.querySelector(‘.mini-feed-box h3 a’)?.getAttribute(‘href’) || ”;
try {
const url = new URL(firstPostLink);
const cleanBasePath = url.pathname.replace(//page/d+$/, ”).replace(//$/, ”);
const updatedPath = `${cleanBasePath}`;///page/${mfCurrentPage}`;
const newUrl = `${url.origin}${updatedPath}`;
// history.replaceState(null, ”, newUrl);
// Always fire GA page_view
if (typeof gtag === ‘function’) {
gtag(“event”, “page_view”, {
page_path: newUrl,
custom_map: {
‘dimension1’: ‘Categories’,
‘dimension2’: ‘Tags’,
‘dimension3’: ‘Authors’,
‘dimension4’: ‘Artists’,
‘dimension6’: ‘page_id’,
‘dimension7’: ‘Primary Category’,
‘dimension9’: ‘Paged Article’,
‘dimension10’: ‘Primary Search Term’
}
});
console.log(‘GA page_view fired for:’, newUrl);
}
} catch (e) {
console.log(‘No more posts’);
}
}
})
.catch(error => {
console.error(‘Error loading mini feed:’, error);
loadBtn.innerHTML = ‘Load more News Bites’;
loadBtn.disabled = false;
});
}
// Initial load on page load
document.addEventListener(‘DOMContentLoaded’, () => {
loadMiniFeed(); // Load first batch
});
// Load more on button click
loadBtn.addEventListener(‘click’, loadMiniFeed);

