theming.md 396 Bytes
Newer Older
1 2 3
Theming
=======

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
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',
		],
	],
],
```