The Dreamfund team covers homeownership, community gifting, lender compliance, and down payment strategies for buyers, supporters, and partners.
Loading article...
Content coming soon.
'; // Tags if ((post.tags || []).length) { const tagSection = document.getElementById('post-tags'); tagSection.innerHTML = `Tags:` + post.tags.map(t => `${t}`).join(''); } // Author card document.getElementById('author-card-name').textContent = post.author; document.getElementById('author-card-title').textContent = post.authorTitle || 'Dreamfund Editorial'; const cardAvatar = document.getElementById('author-card-avatar'); if (post.authorAvatar) { cardAvatar.src = post.authorAvatar; cardAvatar.alt = post.author; } // TOC buildToc(); // Related renderRelated(data.posts, slug); // Show document.getElementById('loading-state').style.display = 'none'; document.getElementById('post-page').style.display = ''; } init();