main.php 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. use yii\helpers\Html;
  5. use api\assets\AppAsset;
  6. AppAsset::register($this);
  7. ?>
  8. <?php $this->beginPage() ?>
  9. <!DOCTYPE html>
  10. <html lang="<?= Yii::$app->language ?>">
  11. <head>
  12. <meta charset="<?= Yii::$app->charset ?>">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. <?= Html::csrfMetaTags() ?>
  16. <title><?= Html::encode($this->title) ?></title>
  17. <?php $this->head() ?>
  18. </head>
  19. <body>
  20. <style>
  21. .container{
  22. line-height: 200%;
  23. }
  24. .container img{
  25. width: 100%;
  26. height: auto;
  27. }
  28. .title{
  29. margin-top: 1rem;
  30. font-size: 1.3rem;
  31. line-height: 1.5rem;
  32. color: #000;
  33. font-weight: bold;
  34. text-align: center;
  35. }
  36. </style>
  37. <?php $this->beginBody() ?>
  38. <div class="container">
  39. <?= $content ?>
  40. </div>
  41. <?php $this->endBody() ?>
  42. </body>
  43. </html>
  44. <?php $this->endPage() ?>