Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
396 B

Theming
=======
TBD
Configuring current theme
-------------------------
Theme configuration is specified via `view` component of the application. So in order to set it up the following should
be in your application config file:
```php
'components' => [
'view' => [
'theme' => [
'pathMap' => ['@app/views' => '@webroot/themes/basic'],
'baseUrl' => '@web/themes/basic',
],
],
],
```