https://github.com/zrk4939/seo-module
https://github.com/zrk4939/seo-module
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zrk4939/seo-module
- Owner: zrk4939
- Created: 2017-08-30T10:01:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-27T09:14:31.000Z (about 2 years ago)
- Last Synced: 2025-01-18T14:36:50.178Z (4 months ago)
- Language: PHP
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Config
---------------
```php
...
'bootstrap' => ['seo'],
...
'modules' => [
...
'seo' => [
'class' => 'zrk4939\modules\seo\SeoModule',
],
...
],
```Migrations
----------------
```
php yii migrate --migrationPath=@vendor/zrk4939/seo-module/migrations --interactive=0
```Layout
---------------
```html
= Html::csrfMetaTags() ?>= \zrk4939\modules\seo\widgets\MetaWidget::widget() ?>
= Html::encode($this->title) ?>
head() ?>```