Blame view

frontend/widgets/views/_speakers.php 1.39 KB
147ec2fb   alex   add speakers part
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
  <?php
  /**
   * @var $speakerList \common\models\speaker\Speaker[]
   *
   */
  use artbox\core\helpers\ImageHelper;
  use artbox\core\helpers\Url;
  ?>
  
  
   <section class="section-speakers">
          <div class="container">
              <div class="row">
                  <div class="col-xs-12"><div class="speakers-title">
                          <?=\Yii::t('app', 'Speakers')?></div></div>
  </div>
  
  <div class="row">
  	<div class="col-xs-12 col-sm-12">
  		<div class="slider-home sliders row owl-carousel">
  
  			<?php foreach ($speakerList as $speaker){?>
  				<div class="col-xs-12 col-sm-4 col-md-3 items-home-col">
  					<div class="items-home">
  						<div class="items-home-img">
  							<!--263x210-->
  							<span><img src="<?=ImageHelper::set($speaker->image->getPath())
  									->cropResize(263, 210)
  									->render()?>" alt="">
                  </span>
  						</div>
  						<div class="items-home-name">
  							<?=\yii\helpers\Html::a($speaker->language->name,
  								Url::to(['site/speakers',
  									'id'=>$speaker->id
  								])
  							)?>
  						</div>
  						<div class="items-home-job"><?=$speaker->language->position?></div>
  						<div class="items-home-country-wr">
  							<div class="items-home-country">
                      <span>
                          <?=$speaker->language->organization?>
                      </span>
  							</div>
  						</div>
  					</div>
  				</div>
  			<?php } ?>
  		</div>
  	</div>
  </div>
  </div>
  </section>