2013-12-29 06:37:32 +08:00
|
|
|
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
2014-07-02 02:45:44 +08:00
|
|
|
/* @var $this \yii\web\View view component instance */
|
2014-07-02 23:08:18 +08:00
|
|
|
/* @var $message \yii\mail\MessageInterface the message being composed */
|
2014-07-02 02:45:44 +08:00
|
|
|
/* @var $content string 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() ?>
|