' + escapeHtml(title) + '
'; html += '' + escapeHtml(desc) + '
'; html += '/** * 밍글 스튜디오 DevLog 목록 페이지 * devlog/index.json에서 글 목록을 불러와 렌더링 */ (function() { 'use strict'; var grid = document.getElementById('blogGrid'); var filtersWrap = document.getElementById('blogFilters'); var loadingEl = document.getElementById('blogLoading'); if (!grid) return; var allPosts = []; var currentFilter = 'all'; function init() { fetch('/devlog/index.json?t=' + Date.now()) .then(function(res) { return res.json(); }) .then(function(posts) { allPosts = posts; if (loadingEl) loadingEl.style.display = 'none'; buildFilters(); renderPosts(); }) .catch(function() { if (loadingEl) loadingEl.style.display = 'none'; grid.innerHTML = '
아직 작성된 글이 없습니다.
아직 작성된 글이 없습니다.
' + escapeHtml(desc) + '
'; html += '