mirror of
https://github.com/yiisoft/app.git
synced 2026-03-18 14:06:50 +01:00
* 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
21 lines
615 B
PHP
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>
|