Yii v2 snippet guide

Comparing #187 with #188

Revision #188 was created by rackycz rackycz on May 7, 2020, 10:18:14 AM.

Bootswatch

Content

[...]
<?php yii\widgets\Pjax::end() ?>
```

**Simple Bootstrap themes**
---
There is this page [bootswatch.com](https://bootswatch.com) which provides simple bootstrap themes. It is enough just to replace one CSS file - you can do it in file "views/layouts/main.php" just by adding following row just before <
 /head > tag:

```html
<link href="https://bootswatch.com/3/readable/bootstrap.min.css" rel="stylesheet">
```
[...]