vendor/jamel/cms-bundle/Resources/views/extraCss.html.twig line 1

Open in your IDE?
  1. {% set cmsPath = 'bundles/jamelcms/css/admin-style.css' %}
  2. {% set cropperPath = 'bundles/jamelcropper/css/admin-style.css' %}
  3. {% if file_exists(cmsPath) %}
  4.     <link rel="stylesheet" href="{{ asset(cmsPath) }}">
  5. {% endif %}
  6. {% if file_exists(cropperPath) %}
  7.     <link rel="stylesheet" href="{{ asset(cropperPath) }}">
  8. {% endif %}