${post.title}
${new Date(post.date).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' })}
${post.content}
"use strict"; // Load and display blog posts from JSON async function loadBlogPosts() { try { const response = await fetch('./posts.json'); const posts = await response.json(); const blogsContainer = document.getElementById('blogsContainer'); if (posts.length === 0) { blogsContainer.innerHTML = '
No blog posts yet.
Error loading blog posts.