custom/static-plugins/SamsonCustomer/src/Resources/views/storefront/layout/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {% block layout_head_meta_tags_viewport %}
  3.     {{ parent() }}
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. {% endblock %}
  6. {% block layout_head_favicon %}
  7.     {{ parent() }}
  8.     <link rel="manifest" href="/bundles/samsoncustomer/assets/other/site.webmanifest">
  9.     <link rel="mask-icon" href="/bundles/samsoncustomer/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
  10.     <link rel="icon" type="image/png" sizes="32x32" href="/bundles/samsoncustomer/assets/favicon/favicon-32x32.png">
  11.     <link rel="icon" type="image/png" sizes="16x16" href="/bundles/samsoncustomer/assets/favicon/favicon-16x16.png">
  12. {% endblock %}
  13.  {% block layout_head_stylesheet %}
  14.      {{ parent() }}
  15.      <style>
  16.          body{
  17.              --samson-brand-primary:{{ config("SamsonCustomer.config.samsonPrimaryColor") }};
  18.              --samson-brand-secondary:{{ config("SamsonCustomer.config.samsonSecondaryColor") }};
  19.          }
  20.      </style>
  21.  {% endblock %}