html.php 593 B

12345678910111213141516171819202122
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this \yii\web\View */
  4. /* @var $content string */
  5. ?>
  6. <?php $this->beginPage() ?>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
  11. <title><?= Html::encode($this->title) ?></title>
  12. <?php $this->head() ?>
  13. </head>
  14. <body>
  15. <?php $this->beginBody() ?>
  16. <?= $content ?>
  17. <?php $this->endBody() ?>
  18. </body>
  19. </html>
  20. <?php $this->endPage() ?>