quantum-ai-v3/templates/wrapper/landing.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

68 lines
1.4 KiB
HTML

{% extends 'base.html' %}
{% block title %}{{ page_title|default:"External Service" }} - Quantum Tasks AI{% endblock %}
{% block extra_css %}
<style>
.landing-page {
min-height: 80vh;
padding: 2rem 0;
}
.landing-header {
text-align: center;
margin-bottom: 3rem;
}
.landing-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 1rem;
}
.landing-description {
font-size: 1.25rem;
color: #666;
max-width: 800px;
margin: 0 auto;
}
.external-service-embed {
width: 100%;
min-height: 600px;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.external-service-embed iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
{% endblock %}
{% block content %}
<div class="landing-page">
<div class="container">
<div class="landing-header">
<h1 class="landing-title">{{ page_title|default:"External Service" }}</h1>
{% if page_description %}
<p class="landing-description">{{ page_description }}</p>
{% endif %}
</div>
<div class="external-service-embed">
<iframe
src="{{ external_url }}"
frameborder="0"
scrolling="auto"
title="{{ page_title|default:'External Service' }}">
</iframe>
</div>
</div>
</div>
{% endblock %}