custom/plugins/Theme3S/src/Resources/views/storefront/page/checkout/_page.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/_page.html.twig' %}
  2. {% block base_flashbags %}{% endblock %}
  3. {% set pathinfo = "" %}
  4. {% block base_content %}
  5.     {% block page_checkout %}
  6.         <div class="checkout">
  7.             {% block page_checkout_container %}
  8.                 <div class="checkout-container">
  9.                     {% block page_checkout_main %}
  10.                         <div class="checkout-main">
  11.                             {% block base_flashbags_checkout %}
  12.                                 <div class="flashbags">
  13.                                     {% set pathinfo = app.request.pathInfo %}
  14.                                     {% for type, messages in app.flashes %}
  15.                                         {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with { type: type, list: messages } %}
  16.                                     {% endfor %}
  17.                                 </div>
  18.                             {% endblock %}
  19.                             {% block page_checkout_main_content %}{% endblock %}
  20.                         </div>
  21.                     {% endblock %}
  22.                     {% block page_checkout_additional %}{% endblock %}
  23.                    {% if app.request.pathInfo != "/checkout/register" and app.request.pathInfo != "/account/register" %}
  24.                         {% block page_checkout_aside %}
  25.                             <div class="checkout-aside {% if block('page_checkout_additional')|trim %}checkout-aside-no-offset{% endif %}">
  26.                                 {% block page_checkout_aside_container %}
  27.                                     <div class="checkout-aside-container">
  28.                                         {% block page_checkout_aside_summary %}
  29.                                             <div class="checkout-aside-summary">
  30.                                                 {% block page_checkout_summary_header %}
  31.                                                     <h2 class="checkout-aside-summary-header">
  32.                                                         {{ "checkout.summaryHeader"|trans|sw_sanitize }}
  33.                                                     </h2>
  34.                                                 {% endblock %}
  35.                                                 {% block page_checkout_summary_list %}
  36.                                                     <div class="checkout-aside-summary-list-container">
  37.                                                         {% block page_checkout_summary_list_container %}
  38.                                                             {% sw_include '@Storefront/storefront/page/checkout/summary.html.twig' %}
  39.                                                         {% endblock %}
  40.                                                     </div>
  41.                                                 {% endblock %}
  42.                                             </div>
  43.                                         {% endblock %}
  44.                                         {% block page_checkout_aside_actions %}{% endblock %}
  45.                                     </div>
  46.                                 {% endblock %}
  47.                             </div>
  48.                         {% endblock %}
  49.                    {%  endif %}
  50.                 </div>
  51.             {% endblock %}
  52.         </div>
  53.     {% endblock %}
  54. {% endblock %}