{% if theme_css %} {% endif %} {% set hero = site_copy.get('hero', {}) if site_copy else {} %} {% set problem = site_copy.get('problem', {}) if site_copy else {} %} {% set solution = site_copy.get('solution', {}) if site_copy else {} %} {% set about_text = site_copy.get('about', '') if site_copy else '' %} {% set _raw_features = site_copy.get('features', []) if site_copy else [] %} {% if _raw_features is mapping and _raw_features.get('features') is not none %} {% set features = _raw_features.get('features', []) %} {% elif _raw_features is iterable and _raw_features is not string and _raw_features is not mapping %} {% set features = _raw_features %} {% else %} {% set features = [] %} {% endif %} {% set _raw_stats = site_copy.get('stats', []) if site_copy else [] %} {% if _raw_stats is mapping and _raw_stats.get('stats') is not none %} {% set stats = _raw_stats.get('stats', []) %} {% elif _raw_stats is iterable and _raw_stats is not string and _raw_stats is not mapping %} {% set stats = _raw_stats %} {% else %} {% set stats = [] %} {% endif %} {% set _raw_testimonials = site_copy.get('testimonials', []) if site_copy else [] %} {% if _raw_testimonials is mapping and _raw_testimonials.get('testimonials') is not none %} {% set testimonials = _raw_testimonials.get('testimonials', []) %} {% elif _raw_testimonials is iterable and _raw_testimonials is not string and _raw_testimonials is not mapping %} {% set testimonials = _raw_testimonials %} {% else %} {% set testimonials = [] %} {% endif %} {% set pricing = site_copy.get('pricing', {}) if site_copy else {} %} {% set _raw_faq = site_copy.get('faq', site_copy.get('faq_items', [])) if site_copy else [] %} {% if _raw_faq is mapping and _raw_faq.get('faq_items') is not none %} {% set faq = _raw_faq.get('faq_items', []) %} {% elif _raw_faq is mapping and _raw_faq.get('faq') is not none %} {% set faq = _raw_faq.get('faq', []) %} {% elif _raw_faq is iterable and _raw_faq is not string and _raw_faq is not mapping %} {% set faq = _raw_faq %} {% else %} {% set faq = [] %} {% endif %} {% set how_it_works = site_copy.get('how_it_works', {}) if site_copy else {} %} {% set cta_final = site_copy.get('cta_final', {}) if site_copy else {} %} {% set contact = site_copy.get('contact', {}) if site_copy else {} %} {% if has_markdown %}
{% if hero_image_url %}

{{ domain }}

{{ chosen_niche }}

{% else %}
{{ domain[0] | upper }}

{{ domain }}

{{ chosen_niche }}

{% endif %}
{{ sales_letter_html | safe }}
Preview Site
{% else %}
{% if hero_image_url %}
{% endif %}
{{ chosen_niche }}

{{ domain }}

{% if chosen_brand.get('tagline') %}

{{ chosen_brand.tagline }}

{% endif %} {% if hero.get('headline') %}

{{ hero.headline }}

{% endif %} {% if hero.get('subheadline') %}

{{ hero.subheadline }}

{% endif %}
{% if about_text %}
About

{% if about_text is string %}{{ about_text }}{% else %}{{ about_text.get('about_body', about_text.get('body', '')) }}{% endif %}

{% endif %} {% if problem and (problem.get('problem_heading') or problem.get('pain_points')) %}
The Problem {% if problem.get('problem_heading') %}

{{ problem.problem_heading }}

{% endif %}
{% if problem.get('problem_body') %}

{{ problem.problem_body }}

{% endif %} {% if problem.get('pain_points') %}
{% for pp in problem.pain_points %}

{{ pp.get('point', pp.get('title', '')) }}

{% if pp.get('detail') or pp.get('description') %}

{{ pp.get('detail', pp.get('description', '')) }}

{% endif %}
{% endfor %}
{% endif %}
{% endif %} {% if solution and (solution.get('solution_heading') or solution.get('benefits')) %}
The Solution {% if solution.get('solution_heading') %}

{{ solution.solution_heading }}

{% endif %}
{% if solution.get('solution_body') %}

{{ solution.solution_body }}

{% endif %} {% if solution.get('benefits') %}
{% for b in solution.benefits %}

{{ b.get('title', '') }}

{{ b.get('description', '') }}

{% endfor %}
{% endif %}
{% endif %} {% if features %}
Value Propositions

What You Get

{% for f in features %}
{% if f.get('icon') %}
{{ f.icon }}
{% else %}
{% endif %}

{{ f.get('title', '') }}

{{ f.get('description', '') }}

{% endfor %}
{% endif %} {% if stats %}
Proof Points

Numbers That Speak

{% for s in stats %}
{{ s.get('value', s.get('stat', '')) }}
{{ s.get('label', s.get('description', '')) }}
{% endfor %}
{% endif %} {% if testimonials %}
Social Proof

What People Are Saying

{% for t in testimonials %}
{% for _ in range(5) %} {% endfor %}

"{{ t.get('quote', t.get('text', '')) }}"

{{ t.get('name', 'A')[0] | upper }}
{{ t.get('name', '') }}
{% if t.get('role') or t.get('title') %}
{{ t.get('role', t.get('title', '')) }}
{% endif %}
{% endfor %}
{% endif %} {% if pricing and (pricing.get('pricing_title') or pricing.get('plans')) %}
Revenue Potential {% if pricing.get('pricing_title') %}

{{ pricing.pricing_title }}

{% endif %}
{% if pricing.get('pricing_body') %}

{{ pricing.pricing_body }}

{% endif %} {% if pricing.get('plans') %}
{% for plan in pricing.plans %}
{% if loop.index == 2 %}
Most Popular
{% endif %}

{{ plan.get('name', plan.get('title', '')) }}

{% if plan.get('price') %}
{{ plan.price }}
{% endif %} {% if plan.get('description') %}

{{ plan.description }}

{% endif %} {% if plan.get('features') %}
    {% for feat in plan.features %}
  • {% if feat is string %}{{ feat }}{% else %}{{ feat.get('name', feat.get('title', '')) }}{% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %} {% if how_it_works and (how_it_works.get('heading') or how_it_works.get('steps')) %}
How It Works {% if how_it_works.get('heading') %}

{{ how_it_works.heading }}

{% endif %}
{% if how_it_works.get('steps') %}
{% for step in how_it_works.steps %}
{{ loop.index }}

{{ step.get('title', step.get('name', '')) }}

{{ step.get('description', step.get('body', '')) }}

{% endfor %}
{% endif %}
{% endif %} {% if faq %}
FAQ

Common Questions

{% for item in faq %}
{{ item.get('question', item.get('q', '')) }}
{{ item.get('answer', item.get('a', '')) }}
{% endfor %}
{% endif %} {% if cta_final and (cta_final.get('heading') or cta_final.get('body')) %}
{% if cta_final.get('heading') %}

{{ cta_final.heading }}

{% endif %} {% if cta_final.get('body') %}

{{ cta_final.body }}

{% endif %} {% if cta_final.get('cta_text') %} {{ cta_final.cta_text }} {% endif %}
{% endif %} {% if contact and (contact.get('heading') or contact.get('email')) %}
{% if contact.get('heading') %}

{{ contact.heading }}

{% endif %} {% if contact.get('body') %}

{{ contact.body }}

{% endif %} {% if contact.get('email') %} {{ contact.email }} {% endif %}
{% endif %}
Preview Site
{% endif %} {% if not has_markdown and site_copy %} {% endif %}