**Issue:** TemplateSyntaxError - 'block' tag with name 'title' appears more than once
**Root Cause:** Nested block tags with same name (title) not allowed in Django templates
**Fix:**
- Removed nested {% block title %} and {% block meta_description %} references
- Used separate block names for og_title, og_description, twitter_title, twitter_description
- Maintained same functionality without nesting conflicts
**Result:** Template renders without syntax errors while preserving social media meta tag structure
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>