불러오는 중...
';
const posts = getRenderablePosts(MAX_VISIBLE_POSTS);
if (posts.length === 0) {
eventGrid.innerHTML = '표시할 문화소식이 없습니다.
';
paginationInfo.textContent = '표시할 문화소식이 없습니다.';
return;
}
paginationInfo.textContent = `가까운 날짜순 ${posts.length}개 노출`;
eventGrid.innerHTML = posts.map((post) => `
${post.mediaType === 'video' ? '영상' : '이미지'}
${buildMedia(post)}
`).join('');
}
function renderNotices() {
const notices = [...getNotices()].sort((a, b) => new Date(b.date) - new Date(a.date));
const makeNoticeHtml = (notice) => `
조회수: ${post.views || 0} · 좋아요: ${post.likes || 0} · 댓글: ${post.comments?.length || 0}
`;
detailMedia.innerHTML = post.mediaType === 'video'
? (post.youtubeId
? `
댓글