mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 07:52:57 +00:00
🐛 Fix duplicate block title tags in base template
- Remove nested block title references causing template errors - Simplify Open Graph and Twitter Card meta tag structure - Resolve Django template rendering issue on homepage 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
cae8d4a8fe
commit
f66122609d
@ -12,8 +12,8 @@
|
||||
<meta name="author" content="Quantum Tasks AI">
|
||||
|
||||
<!-- Open Graph Meta Tags for Social Media -->
|
||||
<meta property="og:title" content="{% block og_title %}{% block title %}Quantum Tasks AI - AI Platform{% endblock %}{% endblock %}">
|
||||
<meta property="og:description" content="{% block og_description %}{% block meta_description %}Quantum Tasks AI - Advanced AI platform for automation and intelligent task management. Access powerful AI agents for your business needs.{% endblock %}{% endblock %}">
|
||||
<meta property="og:title" content="{% block og_title %}Quantum Tasks AI - AI Platform{% endblock %}">
|
||||
<meta property="og:description" content="{% block og_description %}Quantum Tasks AI - Advanced AI platform for automation and intelligent task management. Access powerful AI agents for your business needs.{% endblock %}">
|
||||
<meta property="og:image" content="{% block og_image %}{% static 'img/social-preview.png' %}{% endblock %}">
|
||||
<meta property="og:url" content="{% block og_url %}{{ request.build_absolute_uri }}{% endblock %}">
|
||||
<meta property="og:type" content="{% block og_type %}website{% endblock %}">
|
||||
@ -21,9 +21,9 @@
|
||||
|
||||
<!-- Twitter Card Meta Tags -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{% block twitter_title %}{% block og_title %}{% block title %}Quantum Tasks AI - AI Platform{% endblock %}{% endblock %}{% endblock %}">
|
||||
<meta name="twitter:description" content="{% block twitter_description %}{% block og_description %}{% block meta_description %}Quantum Tasks AI - Advanced AI platform for automation and intelligent task management. Access powerful AI agents for your business needs.{% endblock %}{% endblock %}{% endblock %}">
|
||||
<meta name="twitter:image" content="{% block twitter_image %}{% block og_image %}{% static 'img/social-preview.png' %}{% endblock %}{% endblock %}">
|
||||
<meta name="twitter:title" content="{% block twitter_title %}{% block og_title %}Quantum Tasks AI - AI Platform{% endblock %}{% endblock %}">
|
||||
<meta name="twitter:description" content="{% block twitter_description %}{% block og_description %}Quantum Tasks AI - Advanced AI platform for automation and intelligent task management. Access powerful AI agents for your business needs.{% endblock %}{% endblock %}">
|
||||
<meta name="twitter:image" content="{% block twitter_image %}{% static 'img/social-preview.png' %}{% endblock %}">
|
||||
|
||||
<!-- Unified Font Loading - Single Source of Truth -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user