{# app/templates/store/landing-full.html #} {# standalone #} {# Full Landing Page Template - Maximum Features #} {% extends "storefront/base.html" %} {% block title %}{{ store.name }}{% endblock %} {% block meta_description %}{{ page.meta_description or store.description or store.name }}{% endblock %} {# Alpine.js component #} {% block alpine_data %}storefrontLayoutData(){% endblock %} {% block content %} {# ═══════════════════════════════════════════════════════════════════ #} {# SECTION-BASED RENDERING (when page.sections is configured) #} {# Used by POC builder templates — takes priority over hardcoded HTML #} {# ═══════════════════════════════════════════════════════════════════ #} {% set sections = page_sections if page_sections is defined and page_sections else (page.sections if page else none) %} {% if sections %} {% from 'cms/platform/sections/_hero.html' import render_hero %} {% from 'cms/platform/sections/_features.html' import render_features %} {% from 'cms/platform/sections/_testimonials.html' import render_testimonials %} {% from 'cms/platform/sections/_gallery.html' import render_gallery %} {% from 'cms/platform/sections/_contact_info.html' import render_contact_info %} {% from 'cms/platform/sections/_cta.html' import render_cta %} {% set lang = request.state.language|default("fr") %} {% set default_lang = 'fr' %}
{% if sections.hero %}{{ render_hero(sections.hero, lang, default_lang) }}{% endif %} {% if sections.features %}{{ render_features(sections.features, lang, default_lang) }}{% endif %} {% if sections.testimonials %}{{ render_testimonials(sections.testimonials, lang, default_lang) }}{% endif %} {% if sections.gallery %}{{ render_gallery(sections.gallery, lang, default_lang) }}{% endif %} {% if sections.contact_info %}{{ render_contact_info(sections.contact_info, lang, default_lang) }}{% endif %} {% if sections.cta %}{{ render_cta(sections.cta, lang, default_lang) }}{% endif %}
{% else %} {# ═══════════════════════════════════════════════════════════════════ #} {# HARDCODED LAYOUT (original full landing page — no sections JSON) #} {# ═══════════════════════════════════════════════════════════════════ #}
{# Hero Section - Split Design #}
{# Left - Content #}
{% if theme.branding.logo %}
{{ store.name }}
{% endif %}

{{ page.title or store.name }}

{% if store.tagline %}

{{ store.tagline }}

{% endif %} {% if store.description %}

{{ store.description }}

{% endif %} {# Stats/Badges #}
100+
Products
24/7
Support
⭐⭐⭐⭐⭐
Rated
{# Right - Visual #}
{# Features Grid #}

What We Offer

Everything you need for an exceptional shopping experience

Premium Quality

Top-tier products carefully selected for you

Fast Shipping

Quick delivery right to your door

Best Value

Competitive prices and great deals

24/7 Support

Always here to help you

{# About Section (with content) #} {% if page.content %}
{{ page.content | safe }}{# sanitized: CMS content #}
{% endif %} {# Quick Navigation #}
{# Final CTA #}

Ready to Start Shopping?

Join thousands of satisfied customers today

View All Products
{% endif %} {% endblock %}