2013-12-29 06:37:32 +08:00
|
|
|
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
2022-01-15 03:47:17 +08:00
|
|
|
/** @var \yii\web\View $this view component instance */
|
|
|
|
/** @var \yii\mail\MessageInterface $message the message being composed */
|
|
|
|
/** @var string $content main view render result */
|
2013-12-29 06:37:32 +08:00
|
|
|
?>
|
|
|
|
<?php $this->beginPage() ?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2014-05-29 22:41:10 +08:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
|
2014-03-16 12:46:16 +08:00
|
|
|
<title><?= Html::encode($this->title) ?></title>
|
|
|
|
<?php $this->head() ?>
|
2013-12-29 06:37:32 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2014-03-16 12:46:16 +08:00
|
|
|
<?php $this->beginBody() ?>
|
|
|
|
<?= $content ?>
|
|
|
|
<?php $this->endBody() ?>
|
2013-12-29 06:37:32 +08:00
|
|
|
</body>
|
|
|
|
</html>
|
2014-03-16 12:46:16 +08:00
|
|
|
<?php $this->endPage() ?>
|