{# app/templates/store/landing-minimal.html #} {# standalone #} {# Minimal Landing Page Template - Ultra Clean #} {% extends "storefront/base.html" %} {% block title %}{{ store.name }}{% endblock %} {% block meta_description %}{{ page.meta_description or store.description or store.name }}{% endblock %} {% block content %}
{# Logo #} {% if theme.branding.logo %}
{{ store.name }}
{% endif %} {# Title #}

{{ page.title or store.name }}

{# Description/Content #} {% if page.content %}
{{ page.content | safe }}{# sanitized: CMS content #}
{% elif store.description %}

{{ store.description }}

{% endif %} {# Single CTA #}
Enter Shop
{# Optional Links Below #} {% if header_pages or footer_pages %}
Products {% for page in (header_pages or footer_pages)[:4] %} {{ page.title }} {% endfor %}
{% endif %}
{% endblock %}