|
@@ -3,12 +3,22 @@
|
|
|
{% block html_title %}{{ customTitle(t('Customize')) }} {% endblock %}
|
|
{% block html_title %}{{ customTitle(t('Customize')) }} {% endblock %}
|
|
|
|
|
|
|
|
{% block style_css_block %}
|
|
{% block style_css_block %}
|
|
|
- {% if env === 'development' %}
|
|
|
|
|
- <script src="{{ webpack_asset('styles/style.js') }}"></script>
|
|
|
|
|
- <script src="{{ webpack_asset('styles/theme-' + theme() + '.js') }}"></script>
|
|
|
|
|
|
|
+ {% if 'kibela' === layoutType() %}
|
|
|
|
|
+ {% if env === 'development' %}
|
|
|
|
|
+ <script src="{{ webpack_asset('styles/style.js') }}"></script>
|
|
|
|
|
+ <script src="{{ webpack_asset('styles/theme-kibela.js') }}"></script>
|
|
|
|
|
+ {% else %}
|
|
|
|
|
+ <link rel="stylesheet" href="{{ webpack_asset('styles/style.css') }}">
|
|
|
|
|
+ <link rel="stylesheet" id="jssDefault" {# append id for theme selector #} href="{{ webpack_asset('styles/theme-kibela.css') }}">
|
|
|
|
|
+ {% endif %}
|
|
|
{% else %}
|
|
{% else %}
|
|
|
- <link rel="stylesheet" href="{{ webpack_asset('styles/style.css') }}">
|
|
|
|
|
- <link rel="stylesheet" id="jssDefault" {# append id for theme selector #} href="{{ webpack_asset('styles/theme-' + theme() + '.css') }}">
|
|
|
|
|
|
|
+ {% if env === 'development' %}
|
|
|
|
|
+ <script src="{{ webpack_asset('styles/style.js') }}"></script>
|
|
|
|
|
+ <script src="{{ webpack_asset('styles/theme-' + theme() + '.js') }}"></script>
|
|
|
|
|
+ {% else %}
|
|
|
|
|
+ <link rel="stylesheet" href="{{ webpack_asset('styles/style.css') }}">
|
|
|
|
|
+ <link rel="stylesheet" id="jssDefault" {# append id for theme selector #} href="{{ webpack_asset('styles/theme-' + theme() + '.css') }}">
|
|
|
|
|
+ {% endif %}
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
|
|