html.php 609 B

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