1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /* @var $this \yii\web\View */
- /* @var $content string */
- use yii\helpers\Html;
- use api\assets\AppAsset;
- AppAsset::register($this);
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>">
- <head>
- <meta charset="<?= Yii::$app->charset ?>">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <?= Html::csrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- </head>
- <body>
- <style>
- .container{
- line-height: 200%;
- }
- .container img{
- width: 100%;
- height: auto;
- }
- .title{
- margin-top: 1rem;
- font-size: 1.3rem;
- line-height: 1.5rem;
- color: #000;
- font-weight: bold;
- text-align: center;
- }
- </style>
- <?php $this->beginBody() ?>
- <div class="container">
- <?= $content ?>
- </div>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|