📝 Blog Post Generator

Create beautiful blog posts for your website

${title}

${category ? `${category} • ` : ''} ${date || 'Recently Published'}
← Back to All Posts
${content}

About the Author

Dallas W. Thompson is an author of science fiction, fantasy romance, philosophy, and children's STEM books. With over 20 published works, Dallas explores themes of consciousness, reality, and the human experience through compelling storytelling.

View All Books →
`; document.getElementById('output').textContent = html; document.getElementById('outputSection').classList.remove('hidden'); // Scroll to output document.getElementById('outputSection').scrollIntoView({ behavior: 'smooth' }); } function clearForm() { document.getElementById('title').value = ''; document.getElementById('date').value = ''; document.getElementById('category').value = ''; document.getElementById('excerpt').value = ''; document.getElementById('content').value = ''; document.getElementById('outputSection').classList.add('hidden'); }