templates/reusable/_domainCss.html.twig line 1

Open in your IDE?
  1. {% if app.session.get("customerAccountDomain") %}
  2.     {% set customerAccountDomain = app.session.get("customerAccountDomain") %}
  3.     {% if customerAccountDomain.getCustomCss() %}
  4.         <link rel="stylesheet" href="{{ asset('css/skins/'~ customerAccountDomain.getCustomCss()) ~ '.css' }}">
  5.     {% endif %}
  6. {% endif %}