mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 06:52:58 +00:00
🔧 Fix Django template syntax error in base.html
- Remove nested {% block title %} tags causing TemplateSyntaxError
- Fix Open Graph and Twitter meta tag blocks
- Use absolute URLs for social media image previews
- Resolves Internal Server Error on Railway deployment
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
bf8cc1817e
commit
6641dddfe6
@ -14,10 +14,10 @@
|
||||
<!-- Open Graph Meta Tags for Rich Link Previews -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Quantum Tasks AI">
|
||||
<meta property="og:title" content="{% block og_title %}{% block title %}Quantum Tasks AI - AI Platform{% endblock %}{% endblock %}">
|
||||
<meta property="og:title" content="{% block og_title %}Quantum Tasks AI - AI Platform{% endblock %}">
|
||||
<meta property="og:description" content="{% block og_description %}Advanced AI agent marketplace for automation, analysis, and productivity. Access powerful AI tools for business and personal use.{% endblock %}">
|
||||
<meta property="og:url" content="{% block og_url %}https://quantumtaskai.com{{ request.get_full_path }}{% endblock %}">
|
||||
<meta property="og:image" content="{% block og_image %}{% static 'img/og-image.png' %}{% endblock %}">
|
||||
<meta property="og:image" content="{% block og_image %}https://quantumtaskai.com{% static 'img/og-image.png' %}{% endblock %}">
|
||||
<meta property="og:image:width" content="1200">
|
||||
<meta property="og:image:height" content="630">
|
||||
<meta property="og:image:alt" content="Quantum Tasks AI - AI Agent Marketplace">
|
||||
@ -25,9 +25,9 @@
|
||||
<!-- Twitter Card Meta Tags -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@quantumtaskai">
|
||||
<meta name="twitter:title" content="{% block twitter_title %}{% block title %}Quantum Tasks AI - AI Platform{% endblock %}{% endblock %}">
|
||||
<meta name="twitter:title" content="{% block twitter_title %}Quantum Tasks AI - AI Platform{% endblock %}">
|
||||
<meta name="twitter:description" content="{% block twitter_description %}Advanced AI agent marketplace for automation, analysis, and productivity. Access powerful AI tools for business and personal use.{% endblock %}">
|
||||
<meta name="twitter:image" content="{% block twitter_image %}{% static 'img/og-image.png' %}{% endblock %}">
|
||||
<meta name="twitter:image" content="{% block twitter_image %}https://quantumtaskai.com{% static 'img/og-image.png' %}{% endblock %}">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user