Blame view

basic2/views/layouts/main.php 2.74 KB
2fe1e5ce8   Андрей Ларионов   Первый коммит на ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  <?php
  
  /** @var yii\web\View $this */
  /** @var string $content */
  
  use app\assets\AppAsset;
  use app\widgets\Alert;
  use yii\bootstrap5\Breadcrumbs;
  use yii\bootstrap5\Html;
  use yii\bootstrap5\Nav;
  use yii\bootstrap5\NavBar;
  
  AppAsset::register($this);
  
  $this->registerCsrfMetaTags();
  $this->registerMetaTag(['charset' => Yii::$app->charset], 'charset');
  $this->registerMetaTag(['name' => 'viewport', 'content' => 'width=device-width, initial-scale=1, shrink-to-fit=no']);
  $this->registerMetaTag(['name' => 'description', 'content' => $this->params['meta_description'] ?? '']);
  $this->registerMetaTag(['name' => 'keywords', 'content' => $this->params['meta_keywords'] ?? '']);
  $this->registerLinkTag(['rel' => 'icon', 'type' => 'image/x-icon', 'href' => '@web/favicon.ico']);
  ?>
  <?php $this->beginPage() ?>
  <!DOCTYPE html>
  <html lang="<?= Yii::$app->language ?>" class="h-100">
  <head>
      <title><?= Html::encode($this->title) ?></title>
      <?php $this->head() ?>
  </head>
  <body class="d-flex flex-column h-100">
  <?php $this->beginBody() ?>
  
  <header id="header">
      <?php
      NavBar::begin([
          'brandLabel' => Yii::$app->name,
          'brandUrl' => Yii::$app->homeUrl,
          'options' => ['class' => 'navbar-expand-md navbar-dark bg-dark fixed-top']
      ]);
      echo Nav::widget([
          'options' => ['class' => 'navbar-nav'],
          'items' => [
              ['label' => 'Home', 'url' => ['/site/index']],
              ['label' => 'About', 'url' => ['/site/about']],
              ['label' => 'Contact', 'url' => ['/site/contact']],
              Yii::$app->user->isGuest
                  ? ['label' => 'Login', 'url' => ['/site/login']]
                  : '<li class="nav-item">'
                      . Html::beginForm(['/site/logout'])
                      . Html::submitButton(
                          'Logout (' . Yii::$app->user->identity->username . ')',
                          ['class' => 'nav-link btn btn-link logout']
                      )
                      . Html::endForm()
                      . '</li>'
          ]
      ]);
      NavBar::end();
      ?>
  </header>
  
  <main id="main" class="flex-shrink-0" role="main">
      <div class="container">
          <?php if (!empty($this->params['breadcrumbs'])): ?>
              <?= Breadcrumbs::widget(['links' => $this->params['breadcrumbs']]) ?>
          <?php endif ?>
          <?= Alert::widget() ?>
          <?= $content ?>
      </div>
  </main>
  
  <footer id="footer" class="mt-auto py-3 bg-light">
      <div class="container">
          <div class="row text-muted">
              <div class="col-md-6 text-center text-md-start">&copy; My Company <?= date('Y') ?></div>
              <div class="col-md-6 text-center text-md-end"><?= Yii::powered() ?></div>
          </div>
      </div>
  </footer>
  
  <?php $this->endBody() ?>
  </body>
  </html>
  <?php $this->endPage() ?>