// Only display excerpt in emails
(function() {
// This runs only when Ghost is preparing emails
if (document.querySelector('html.kg-email-template')) {
// Find all article content
const articleContent = document.querySelectorAll('.kg-card:not(.kg-card-begin)');
// Remove all content cards except the first few (which serve as excerpt)
for (let i = 3; i < articleContent.length; i++) {
articleContent[i].style.display = 'none';
}
// Add a "Read More" button
const readMoreBtn = document.createElement('div');
readMoreBtn.innerHTML = 'Read Full Post';
document.querySelector('.kg-email-body').appendChild(readMoreBtn);
}
})();