Yii v2 snippet guide

Comparing #193 with #194

Revision #194 was created by rackycz rackycz on May 7, 2020, 11:01:05 AM.

Bootswatch

Content

[...]
```html
<link href="<?=Yii::$app->getUrlManager()->getBaseUrl()?>/css/bootstrap-bootswatch-united.min.css" rel="stylesheet">
```

Now you technically do not need the original bootstrap.css file
yso you can remove it in "basic/config/web.php" by adding the assetManager section to "components":

```php
'components' => [
// https://stackoverflow.com/questions/26734385/yii2-disable-bootstrap-js-jquery-and-css
'assetManager' => [
[...]