custom/plugins/EconsorCrowdfunding/src/Resources/views/storefront/layout/header/header.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
  2. {% block layout_header %}
  3.     <div class="navbar shadow-sm {% if activeRoute is same as ('frontend.crowdfunding.campaign') %}is--dark{% endif %}">
  4.         <div class="container d-flex justify-content-between">
  5.             {% block layout_header_logo %}
  6.                 {{ parent() }}
  7.             {% endblock %}
  8.             {% block layout_header_search %}
  9.                 {% if activeRoute is not same as ('frontend.crowdfunding.campaign') %}
  10.                     {{ parent() }}
  11.                 {% endif %}
  12.             {% endblock %}
  13.             {% block layout_header_actions %}
  14.                 {% if activeRoute is same as ('frontend.crowdfunding.campaign') %}
  15.                     <div class="col-2">
  16.                         <a href="#" class="btn btn-primary btn-block">{{ 'crowdfunding.campaign.labels.share-page'|trans }}</a>
  17.                     </div>
  18.                 {% else %}
  19.                     {{ parent() }}
  20.                 {% endif %}
  21.             {% endblock %}
  22.         </div>
  23.     </div>
  24. {% endblock %}