custom/static-plugins/CytexTheme/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Wtheme/storefront/layout/footer/footer.html.twig' %}
  2. {% block layout_footer_inner_container %}
  3.     <div class="footer-container">
  4.         {{ parent() }}
  5.     </div>
  6. {% endblock %}
  7. {% block footer_block_first %}
  8.     <section class="d-flex flex-column flex-md-row footer-newsletter-container">
  9.         <div class="col-12 col-md-6">
  10.             <h3 class="">{{ "cytex-theme.footer.newsletter.headline"|trans }}</h3>
  11.             <h3>{{ "cytex-theme.footer.newsletter.subheadline"|trans }} <span class="cytex-color-cta-one">{{ "cytex-theme.footer.newsletter.newsletter"|trans }}</span></h3>
  12.         </div>
  13.         <div class="col-12 col-md-6">
  14.             {% sw_include '@CytexTheme/storefront/layout/footer/footer-newsletter.html.twig' %}
  15.         </div>
  16.         <div>
  17.         </div>
  18.     </section>
  19. {% endblock %}
  20. {% block footer_block_contact %}
  21.     <section class="col-md-3 footer-column js-footer-column">
  22.         <div>
  23.             <h4 class="footer-column-headline footer-headline" id="collapseFooterContactTitle">
  24.                 {{ "cytex-theme.footer.contact.title"|trans|raw|upper }}
  25.             </h4>
  26.         </div>
  27.     {% sw_include '@CytexTheme/storefront/layout/footer/footer-contact-infolist.html.twig' %}
  28.     {% block layout_footer_some %}
  29.         {% sw_include "@Wtheme/storefront/component/widgets/some.html.twig" %}
  30.     {% endblock %}
  31.     </section>
  32. {% endblock %}
  33. {% block layout_footer_navigation_column %}
  34.     <div class="col-md-3 footer-column">
  35.         {% block layout_footer_navigation_information_headline %}
  36.             <div>
  37.                 <h4 class="footer-column-headline footer-headline">
  38.                     {{ root.category.translated.name|upper }}
  39.                 </h4>
  40.             </div>
  41.         {% endblock %}
  42.         {% block layout_footer_navigation_information_content %}
  43.             <section class="footer-column-content"
  44.                  aria-labelledby="collapseFooterTitleNav{{ loop.index }}">
  45.                 <div class="footer-column-content-inner">
  46.                     {% block layout_footer_navigation_information_links %}
  47.                         {{ parent() }}
  48.                     {% endblock %}
  49.                 </div>
  50.             </section>
  51.         {% endblock %}
  52.     </div>
  53. {% endblock %}
  54. {% block layout_footer_bottom %}
  55. {% endblock %}