html.php 642 B

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