Blame view

frontend/views/layouts/main.php 610 Bytes
418b7fab   Yarik   first commit
1
2
3
4
5
6
  <?php
  
  /* @var $this \yii\web\View */
  /* @var $content string */
  
  use yii\helpers\Html;
418b7fab   Yarik   first commit
7
  use frontend\assets\AppAsset;
418b7fab   Yarik   first commit
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  
  AppAsset::register($this);
  ?>
  <?php $this->beginPage() ?>
  <!DOCTYPE html>
  <html lang="<?= Yii::$app->language ?>">
  <head>
      <meta charset="<?= Yii::$app->charset ?>">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <?= Html::csrfMetaTags() ?>
      <title><?= Html::encode($this->title) ?></title>
      <?php $this->head() ?>
  </head>
  <body>
  <?php $this->beginBody() ?>
3bc9af21   Yarik   Layout
23
24
      
      <?= $content ?>
418b7fab   Yarik   first commit
25
26
27
28
29
  
  <?php $this->endBody() ?>
  </body>
  </html>
  <?php $this->endPage() ?>