app/Resources/views/default/stylesheet-webpack.html.twig line 1

Open in your IDE?
  1. <link href="{{ asset('static-dist/app/css/bootstrap.css') }}" rel="stylesheet" />
  2. <link href="{{ asset('static-dist/app/css/main.css') }}" rel="stylesheet" />
  3. <link href="{{ asset('static-dist/app/css/main-v2.css') }}" rel="stylesheet" />
  4. {% if mobile %}
  5.   <link href="{{ asset('static-dist/app/css/mobile.css') }}" rel="stylesheet" />
  6. {% endif %}
  7. {% if maincolor != 'default' and setting('theme.code', 'jianmo') == 'jianmo' %}
  8.   <link href="{{ asset('static-dist/app/css/main-' ~ maincolor ~ '.css') }}" rel="stylesheet" />
  9. {% endif %}
  10. {% if navigationcolor != 'default' and setting('theme.code', 'jianmo') == 'jianmo' %}
  11.   <link href="{{ asset('static-dist/app/css/header-' ~ navigationcolor ~ '.css') }}" rel="stylesheet" />
  12. {% endif %}
  13. {{ slot('stylesheet.webpack.extension', {maincolor: maincolor}) }}
  14. {% include 'stylesheet/stylesheet-custom.html.twig' with {
  15.     config: currentTheme,
  16.     mobile: mobile,
  17.     maincolor: maincolor,
  18.     navigationcolor: navigationcolor,
  19.     }
  20.   %}