Layout in use: layout_alt_two
Check the ADB Project page.
The following div contains {% content "basik-info.htm" %}
themeName_Folder > content block > basik-info.htm
This file is sibling of jeffrey.htm, and home.htm
To combine stylesheets, replace the following lines in the default layout. When combining with this theme, we recommend enabling the config enableAssetDeepHashing
in the file config/cms.php.
Uncombined stylesheets:
<link href="{{ 'assets/css/vendor.css'|theme }}" rel="stylesheet">
<link href="{{ 'assets/css/theme.css'|theme }}" rel="stylesheet">
Combined stylesheets:
<link href="{{ [
'@framework.extras',
'assets/less/vendor.less',
'assets/less/theme.less'
]|theme }}" rel="stylesheet">
Note: Winter includes an SCSS compiler, if you prefer.
Uncombined JavaScript:
<script src="{{ 'assets/vendor/jquery.js'|theme }}"></script>
<script src="{{ 'assets/vendor/bootstrap.js'|theme }}"></script>
<script src="{{ 'assets/javascript/app.js'|theme }}"></script>
{% framework extras %}
Combined JavaScript:
<script src="{{ [
'@jquery',
'@framework',
'@framework.extras',
'assets/vendor/bootstrap.js',
'assets/javascript/app.js'
]|theme }}"></script>
[ end of basik-info.htm ]Important: Make sure you keep the
{% styles %}
and{% scripts %}
placeholder tags as these are used by plugins for injecting assets.