custom/plugins/EmzPlatformRubyTheme/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 %}
  3.     {{parent (layout_head_meta_tags)}}
  4.     {% block layout_head_meta_font %}
  5.         {% if theme_config('emz-page-font-on') %}
  6.             {% set font = theme_config('emz-page-font') %}
  7.             <style>
  8.                 @import url("{{theme_config('emz-page-font')}}");
  9.             </style>
  10.         {% endif %}
  11.     {% endblock %}
  12.     {% block layout_head_meta_contentmain %}
  13.         {% if controllerName != "Auth" and controllerName != "Checkout" %}
  14.             <style>
  15.                 .content-main .container-main {
  16.                     padding-top: 0;
  17.                 }
  18.             </style>
  19.         {% endif %}
  20.     {% endblock %}
  21.     {% block layout_head_meta_footer %}
  22.         {% if controllerName != "Register" %}
  23.             <style>
  24.                 .footer-bottom {
  25.                     margin-bottom: 50px;
  26.                 }
  27.             </style>
  28.         {% endif %}
  29.     {% endblock %}
  30. {% endblock %}