ead29e4e
Eugeny Galkovskiy
create pages
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* @var View $this
* @var Feedback $contact
*/
use artbox\core\models\Feedback;
use common\models\Settings;
use frontend\assets\MapAsset;
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
use yii\web\View;
$settings = Settings::getInstance();
$this->title = \Yii::t('app', 'menu-mediaabout');
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div id="mediaabout-wr">
<div id="content">
|
44ffda87
Eugeny Galkovskiy
video media about
|
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
<div class="container">
<section>
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2><?=$this->title?></h2>
</div>
<p class="lead">Туристическое агентство “WhereAreYou” осуществляет нестандартные поездки с 2003 года. Мы занимаемся не просто путешествием, а для каждого лично составляем полноценный план поездки: что лучше посетить, длительность пребывания исходя из ваших средств. Все что требуется от вас — назвать город, страну и бюджет.</p>
</div>
</div>
<div class="row portfolio">
<div class="col-sm-4">
<div class="box-image">
<div style="position: absolute;padding-bottom:56.27%;top: 0;width: 100%;height: 100%;"><iframe src="https://www.youtube.com/embed/4XJ_UHggzto?ecver=2" style="position:absolute;width:100%;height:100%;left:0" width="100%" height="100%" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div style="position: absolute;padding-bottom:56.27%;top: 0;width: 100%;height: 100%;"><iframe src="https://www.youtube.com/embed/NCNqrRzXpTw?ecver=2" style="position:absolute;width:100%;height:100%;left:0" width="100%" height="100%" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div style="position: absolute;padding-bottom:56.27%;top: 0;width: 100%;height: 100%;"><iframe src="https://www.youtube.com/embed/c764qnkKUp0?ecver=2" style="position:absolute;width:100%;height:100%;left:0" width="100%" height="100%" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div style="position: absolute;padding-bottom:56.27%;top: 0;width: 100%;height: 100%;"><iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2FKBEnergy.UA%2Fvideos%2F1171662169609800%2F&show_text=0&width=560" width="100%" height="100%" style="border:none;overflow:hidden;height: 270px;" scrolling="no" frameborder="0" allowtransparency="true" allowfullscreen="true"></iframe></div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div class="image">
<img src="img/portfolio-4.jpg" alt="" class="img-responsive">
</div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div class="image">
<img src="img/portfolio-5.jpg" alt="" class="img-responsive">
</div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div class="image">
<img src="img/portfolio-6.jpg" alt="" class="img-responsive">
</div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div class="image">
<img src="img/portfolio-7.jpg" alt="" class="img-responsive">
</div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div class="image">
<img src="img/portfolio-9.jpg" alt="" class="img-responsive">
</div>
</div>
<!-- /.box-image -->
</div>
<div class="col-sm-4">
<div class="box-image">
<div class="image">
<img src="img/portfolio-8.jpg" alt="" class="img-responsive">
</div>
</div>
<!-- /.box-image -->
</div>
</div>
</section>
</div>
|