Blame view

views/layouts/main.php 2.07 KB
2049c43e   Alexey Boroda   first commit
1
  <?php
9568083b   Alexey Boroda   -Backend left
2
3
4
5
6
7
8
9
10
      
      /* @var $this \yii\web\View */
      
      /* @var $content string */
      
      use yii\helpers\Html;
      use app\assets\AppAsset;
      
      AppAsset::register($this);
2049c43e   Alexey Boroda   first commit
11
12
  ?>
  <?php $this->beginPage() ?>
9568083b   Alexey Boroda   -Backend left
13
  
2049c43e   Alexey Boroda   first commit
14
  <!DOCTYPE html>
9568083b   Alexey Boroda   -Backend left
15
16
17
18
19
20
21
  <html xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
    <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width">
      <link href="https://fonts.googleapis.com/css?family=Ubuntu:400,500,700&amp;subset=cyrillic,cyrillic-ext,latin-ext" rel="stylesheet">
      <link type="image/x-icon" href="favicon.ico" rel="icon">
        <?php $this->registerCsrfMetaTags() ?>
2049c43e   Alexey Boroda   first commit
22
      <title><?= Html::encode($this->title) ?></title>
9568083b   Alexey Boroda   -Backend left
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
        <?php $this->head() ?>
    </head>
    <body>
        <?php $this->beginBody() ?>
      <style>
        iframe {
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
        }
      </style>
      
      
      <div class="active section-box-1">
        <span class="first-btn btn_">Подписаться на ветер</span>
        <span class="second-btn btn_">Смотреть карту</span>
        
        <div class="hidden-form">
          <form action="">
            <div class="input-wr">
              <label for="input-name">Имя</label>
              <input id="input-name" type="text">
            </div>
            <div class="input-wr">
              <label for="input-email">Почта</label>
              <input id="input-email" type="text">
            </div>
            <div class="input-wr submit-wr">
              <button type="submit">Отправить</button>
            </div>
          </form>
        </div>
2049c43e   Alexey Boroda   first commit
57
      </div>
9568083b   Alexey Boroda   -Backend left
58
59
60
61
62
63
64
      
      <div class="section-box-map">
        <iframe src="https://www.google.com/maps/d/u/0/embed?mid=1i7xYukKWTOidy_IDDRETE078TmDlxTLV" width="640" height="480"></iframe>
        <div class="green-block">
          <p>При поддержке</p>
          <span> Х-park</span><a target="_blank" href="https://extremstyle.ua">extremstyle.ua</a><span>KFSU</span>
        </div>
2049c43e   Alexey Boroda   first commit
65
      </div>
9568083b   Alexey Boroda   -Backend left
66
67
68
        
        <?php $this->endBody() ?>
    </body>
2049c43e   Alexey Boroda   first commit
69
70
  </html>
  <?php $this->endPage() ?>