Files
yii3-app/resources/layout/_head.php
Alexander Makarov 8be5420be5 More fixes (#2)
* Fix console config
* Clean up ignore patterns
* Export .editorconfig and .gitignore
* Fix readme and typo
* Hint $params in configs
* Update .htaccess
* Cleanup views
* More cleanup and parameter renaming
* Fix changelog
* Add security advisories package
* Fix image path in readme
2020-06-04 00:52:54 +03:00

21 lines
615 B
PHP

<?php
declare(strict_types=1);
use Yiisoft\Html\Html;
/**
* @var \App\ApplicationParameters $applicationParameters
* @var string $csrf
*/
?>
<head>
<?= Html::tag('meta', '', ['charset' => $applicationParameters->getCharset()]) ?>
<?= Html::tag('meta', '', ['http-equiv' => 'X-UA-Compatible', 'content' => 'IE=edge']) ?>
<?= Html::tag('meta', '', ['name' => 'viewport', 'content' => 'width=device-width, initial-scale=1']) ?>
<?= Html::tag('meta', '', ['name' => 'csrf', 'content' => $csrf]) ?>
<?= Html::tag('title', Html::encode($this->getTitle())) ?>
<?php $this->head() ?>
</head>