1
0
This repository has been archived on 2024-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
EtailConferenceTheme/src/Resources/views/storefront/layout/header/header.html.twig

31 lines
971 B
Twig

{% sw_extends "@Storefront/storefront/layout/header/header.html.twig" %}
{% block layout_top_bar %}{% endblock %}
{% block layout_header_search %}
<div class="col"></div>
{% endblock %}
{% block layout_header_actions_wishlist %}{% endblock %}
{% block layout_header_actions_account %}{% endblock %}
{% block layout_header_navigation %}
{{ parent() }}
{% if activeRoute == 'frontend.home.page' %}
<div class="header-shopware">
<div class="row">
<div class="col d-flex justify-content-center flex-column">
<h1>Shopware ecommerce platform</h1>
<h2>Build the exceptional</h2>
</div>
<div class="col text-center">
<img src="{{ asset('bundles/etailconferencetheme/assets/shopware-phone.png') }}"
alt="Shopware phone">
</div>
</div>
</div>
{% endif %}
{% endblock %}