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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_head %}
  3.     {{ parent() }}
  4.     
  5.     {% if config('TcinnCopyrightCustom.config.TcinnCopyrightLogoActive') or config('TcinnCopyrightCustom.config.TcinnCopyrightActive') %}
  6.         <style>
  7.             {% if config('TcinnCopyrightCustom.config.TcinnCopyrightActive') %}
  8.                 .footer-copyright {
  9.                     color: {{ config('TcinnCopyrightCustom.config.TcinnCopyrightTextColor') }};
  10.                 }
  11.                 .footer-copyright a {
  12.                     color: {{ config('TcinnCopyrightCustom.config.TcinnCopyrightLinkColor') }} !important;
  13.                 }
  14.                 .footer-copyright a:hover {
  15.                     color: {{ config('TcinnCopyrightCustom.config.TcinnCopyrightLinkColor') }} !important;
  16.                     opacity: 0.75;
  17.                 }
  18.             {% endif %}
  19.             {% if config('TcinnCopyrightCustom.config.TcinnCopyrightLogoActive') %}
  20.                 .footer-copyright-logo {
  21.                     margin: 25px 0 5px 0;
  22.                     text-align: center;
  23.                 }
  24.                 .footer-copyright-logo div {
  25.                     display: inline-block;
  26.                 }
  27.                 .footer-copyright-logo img {
  28.                     width: {{ config('TcinnCopyrightCustom.config.TcinnCopyrightLogoWidth') }}px;
  29.                 }
  30.             {% endif %}
  31.         </style>
  32.     {% endif %}
  33. {% endblock %}