Blame view

frontend/views/layouts/main.php 722 Bytes
a63b5418   Administrator   first_commit
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  
  /* @var $this \yii\web\View */
  /* @var $content string */
  
  use yii\helpers\Html;
  use yii\bootstrap\Nav;
  use yii\bootstrap\NavBar;
  use yii\widgets\Breadcrumbs;
  use frontend\assets\AppAsset;
  use common\widgets\Alert;
  
394e2db6   Administrator   Importers CRUD
13
  
a63b5418   Administrator   first_commit
14
15
16
17
18
  ?>
  <?php $this->beginPage() ?>
  <!DOCTYPE html>
  <html lang="<?= Yii::$app->language ?>">
  <head>
394e2db6   Administrator   Importers CRUD
19
  
a63b5418   Administrator   first_commit
20
      <meta charset="<?= Yii::$app->charset ?>">
394e2db6   Administrator   Importers CRUD
21
22
      <link href="http://fonts.googleapis.com/css?family=Ubuntu:400,300,500,700" rel="stylesheet" type="text/css">
  
a63b5418   Administrator   first_commit
23
24
25
26
27
28
29
      <?= Html::csrfMetaTags() ?>
      <title><?= Html::encode($this->title) ?></title>
      <?php $this->head() ?>
  </head>
  <body>
  <?php $this->beginBody() ?>
  
394e2db6   Administrator   Importers CRUD
30
  <?= $content ?>
a63b5418   Administrator   first_commit
31
32
33
34
35
  
  <?php $this->endBody() ?>
  </body>
  </html>
  <?php $this->endPage() ?>