Blame view

frontend/views/site/about.php 4.04 KB
06692811   Eugeny Galkovskiy   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
      use artbox\core\components\SeoComponent;
      use yii\web\View;
      
      /**
       * @var View $this
       */
      /**
       * @var SeoComponent $seo
       */
      $seo = \Yii::$app->get('seo');
      $this->params[ 'breadcrumbs' ][] = $seo->title;
  ?>
  <div class="container">
      <section>
          <div class="row">
              <div class="col-md-12">
                  
                  <div class="heading">
f3c84328   Eugeny Galkovskiy   translates
20
                      <h2><?= \Yii::t('app', 'About Artbox') ?></h2>
06692811   Eugeny Galkovskiy   first commit
21
22
                  </div>
                  
f3c84328   Eugeny Galkovskiy   translates
23
                  <p class="lead"><?= \Yii::t('app', 'lorem') ?></p>
06692811   Eugeny Galkovskiy   first commit
24
25
26
27
28
29
30
31
32
33
34
35
              
              </div>
          </div>
          
          <div class="row">
              <div class="col-md-8">
                  <section>
                      <div class="row">
                          <div class="col-md-12">
                              <div class="tabs">
                                  <ul class="nav nav-tabs nav-justified">
                                      <li class="active">
f3c84328   Eugeny Galkovskiy   translates
36
                                          <a href="#tab1" data-toggle="tab" aria-expanded="true"><?= \Yii::t('app', 'First tab') ?></a>
06692811   Eugeny Galkovskiy   first commit
37
                                      </li>
f3c84328   Eugeny Galkovskiy   translates
38
                                      <li class=""><a href="#tab2" data-toggle="tab" aria-expanded="false"><?= \Yii::t('app', 'Second tab') ?></a>
06692811   Eugeny Galkovskiy   first commit
39
                                      </li>
f3c84328   Eugeny Galkovskiy   translates
40
                                      <li class=""><a href="#tab3" data-toggle="tab" aria-expanded="false"><?= \Yii::t('app', 'Third tab') ?></a>
06692811   Eugeny Galkovskiy   first commit
41
42
43
44
45
46
47
48
49
                                      </li>
                                  </ul>
                                  <div class="tab-content">
                                      <div class="tab-pane active" id="tab1">
                                          <div class="row">
                                              <div class="col-md-4">
                                                  <img src="/img/template-easy-customize.png" alt="" class="img-responsive">
                                              </div>
                                              <div class="col-md-8">
f3c84328   Eugeny Galkovskiy   translates
50
51
                                                  <p><?= \Yii::t('app', 'lorem2') ?></p>
                                                  <p><?= \Yii::t('app', 'lorem3') ?></p>
06692811   Eugeny Galkovskiy   first commit
52
53
54
55
56
57
58
59
60
                                              </div>
                                          </div>
                                      </div>
                                      <div class="tab-pane" id="tab2">
                                          <div class="row">
                                              <div class="col-md-4">
                                                  <img src="/img/template-easy-code.png" alt="" class="img-responsive">
                                              </div>
                                              <div class="col-md-8">
f3c84328   Eugeny Galkovskiy   translates
61
62
                                                  <p><?= \Yii::t('app', 'lorem2') ?></p>
                                                  <p><?= \Yii::t('app', 'lorem3') ?></p>
06692811   Eugeny Galkovskiy   first commit
63
64
65
66
                                              </div>
                                          </div>
                                      </div>
                                      <div class="tab-pane" id="tab3">
f3c84328   Eugeny Galkovskiy   translates
67
68
69
                                          <p><?= \Yii::t('app', 'lorem2') ?></p>
                                          <p><?= \Yii::t('app', 'lorem3') ?></p>
                                          <p><?= \Yii::t('app', 'lorem3') ?></p>
06692811   Eugeny Galkovskiy   first commit
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
                                      </div>
                                  </div>
                                  <!-- /.tab-content -->
                              </div>
                          </div>
                      </div>
                  </section>
              </div>
              
              <div class="col-md-4">
                  <div class="video">
                      <div class="embed-responsive embed-responsive-4by3">
                          <iframe class="embed-responsive-item" src="//www.youtube.com/embed/i9AHJkHqkpw?autoplay=0&showinfo=0&controls=0"></iframe>
                      </div>
                  
                  </div>
              </div>
          </div>
      </section>
  </div>