Latest

See More

No posts found for "${tag}".`; return; } const heading = document.createElement('h2'); heading.textContent = `Posts in "${tag}"`; heading.style.marginBottom = '20px'; container.appendChild(heading); const feedWrapper = document.createElement('div'); feedWrapper.className = 'gh-feed grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8'; posts.forEach(post => { const card = document.createElement('article'); card.className = `gh-card post${post.feature_image ? ' has-image' : ''}`; const imageHTML = post.feature_image ? `

${post.title} ` : ''; const authorHTML = post.primary_author ? `By ${post.primary_author.name}` : ''; const dateHTML = post.published_at ? `