orange_ecom_starter-2.0.x-dev/templates/pages/page--type--landing-page.html.twig
templates/pages/page--type--landing-page.html.twig
{% extends "page.html.twig" %}
{% block page_body %}
{# Add AOS library for fancy CSS effects. #}
{{ attach_library('orange_ecom_starter/aos') }}
<div class="landing-page__content">
<main class="content__main-content clearfix" role="main">
<div class="visually-hidden"><a id="main-content" tabindex="-1"></a></div>
{% if page.highlighted %}
{{ page.highlighted }}
{% endif %}
{% if page.above_content %}
{{ page.above_content }}
{% endif %}
{% if page.content %}
{{ page.content }}
{% endif %}
{% if page.below_content %}
{{ page.below_content }}
{% endif %}
</main>
</div>
{% endblock page_body %}
