quantum-ai-v2/templates/core/event.html
Claude bf8cc1817e Add rich link previews + event page integration
- Add comprehensive Open Graph meta tags for rich social sharing
- Generate social media assets (og-image.png, favicons)
- Implement Twitter Card support for enhanced Twitter sharing
- Add SEO meta tags for improved search engine visibility
- Create event page with JotForm integration (/event/)
- Add customizable meta blocks for individual page optimization

🔗 Links now show rich previews with title, description, and branded image
📱 Professional favicons across all devices and platforms

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-15 17:09:29 +05:30

43 lines
766 B
HTML

{% extends 'base.html' %}
{% load static %}
{% block title %}Event - Quantum Tasks AI{% endblock %}
{% block extra_css %}
<style>
/* Override main-container for full-width iframe */
.main-container {
max-width: none;
padding: 0;
height: calc(100vh - 80px); /* Account for header height */
}
.iframe-container {
width: 100%;
height: 100%;
}
.iframe-container iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}
/* Hide footer for this page */
.footer {
display: none !important;
}
</style>
{% endblock %}
{% block content %}
<div class="iframe-container">
<iframe
src="{{ form_url }}"
frameborder="0"
scrolling="auto"
title="Event">
</iframe>
</div>
{% endblock %}