view.php
2.32 KB
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
<?php
use artbox\core\helpers\ImageHelper;
use common\models\Persone;
use yii\web\View;
/**
* @var View $this
* @var Persone $model
*/
$this->params[ 'breadcrumbs' ][] = [
'url' => [ 'persone/index' ],
'label' => \Yii::t('app', 'песонал'),
];
$this->params[ 'breadcrumbs' ][] = $model->lang->title;
?>
<div id="content" class="team-member-detail">
<div class="container">
<section>
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2><?= $model->lang->title ?></h2>
</div>
<p class="lead">Do greatest at in learning steepest. Breakfast extremity suffering one who all otherwise suspected. He at no nothing forbade up moments. Wholly uneasy at missed be of pretty whence. John way sir high than law who week. Surrounded
prosperous introduced it if is up dispatched. Improved so strictly produced answered elegance is.</p>
</div>
</div>
<div class="row">
<div class="col-md-8">
<?= $model->lang->text ?>
<div class="heading">
<h3>Get in touch with Han</h3>
</div>
<div class="social">
<?php if (!empty($model->facebook)) { ?>
<a href="<?= $model->facebook ?>" class="external facebook" data-animate-hover="pulse" target="_blank"><i class="fa fa-facebook"></i></a>
<?php
}
if (!empty($model->instagram)) {
?>
<a href="<?= $model->instagram ?>" class="external gplus" data-animate-hover="pulse" target="_blank"><i class="fa fa-instagram"></i></a>
<?php } ?>
</div>
</div>
<div class="col-md-4">
<?= ImageHelper::set($model->image->getPath())
->cropResize(360, 360)
->renderImage(
[
'class' => 'img-responsive img-circle',
'alt' => $model->lang->title,
]
) ?>
</div>
</div>
</section>
</div>
<!-- /.container -->
</div>
<!-- /#content -->