quantum-ai-v3/templates/wrapper/iframe.html
Claude cae8d4a8fe 🎨 Add external service wrappers and social media previews
- External service wrapper system for JotForm, Zapier integrations
- Simple template-based approach (iframe, landing, redirect)
- Rich social media previews with Open Graph and Twitter Card tags
- Professional social preview image for branded sharing
- Updated documentation with usage examples

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-15 18:21:16 +05:30

42 lines
778 B
HTML

{% extends 'base.html' %}
{% block title %}{{ page_title|default:"External Service" }} - Quantum Tasks AI{% endblock %}
{% block extra_css %}
<style>
/* Full-width iframe styling */
.main-container {
max-width: none;
padding: 0;
height: calc(100vh - 80px);
}
.iframe-container {
width: 100%;
height: 100%;
}
.iframe-container iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}
/* Hide footer for full-screen */
.footer {
display: none !important;
}
</style>
{% endblock %}
{% block content %}
<div class="iframe-container">
<iframe
src="{{ external_url }}"
frameborder="0"
scrolling="auto"
title="{{ page_title|default:'External Service' }}">
</iframe>
</div>
{% endblock %}