custom/plugins/TcinnCopyrightCustom/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/footer/footer.html.twig' %}
  2. {% block layout_footer_copyright %}
  3.     {% if config('TcinnCopyrightCustom.config.TcinnCopyrightLogoActive') or config('TcinnCopyrightCustom.config.TcinnCopyrightActive') %}
  4.         {% if config('TcinnCopyrightCustom.config.TcinnCopyrightLogoActive') %}
  5.             <div class="footer-copyright-logo">
  6.                 {% sw_include '@Storefront/storefront/layout/header/logo.html.twig' %}
  7.             </div>
  8.         {% endif %}
  9.         {% if config('TcinnCopyrightCustom.config.TcinnCopyrightActive') %}
  10.             <div class="footer-copyright">
  11.                 <p>{{ config('TcinnCopyrightCustom.config.TcinnCopyrightValue')|raw }} {% if twtLicensekey is defined %}Theme by {{ 'twt.tcinn'|trans({'%href%': 'https://themeware.shop','%title%': 'Shopware Theme','%name%': 'ThemeWare®'})|raw }}{% endif %}</p>
  12.             </div>
  13.         {% else %}
  14.             {% if twtLicensekey is defined %}
  15.                 <div class="footer-copyright">
  16.                     <p>Theme by {{ 'twt.tcinn'|trans({'%href%': 'https://themeware.shop','%title%': 'Shopware Theme','%name%': 'ThemeWare®'})|raw }}</p>
  17.                 </div>
  18.             {% endif %}
  19.         {% endif %}
  20.     {% endif %}
  21. {% endblock %}