a1684257
Administrator
first commit
|
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
|
<?php
/**
* @var $this SportSectionController
* @var $contacts Contact[]
* @var $content string
*/
?>
<?php $this->renderPartial('//snippets/headerGallery'); ?>
<div class="wrapper content-wrapper">
<div class="col-wrapper">
<div class="col2 aside-no-title">
<?php $this->renderPartial('//snippets/bajaBanner');?>
<?php $this->renderPartial('_sidebar');?>
</div>
<div class="col8">
<h1><?php echo $this->pageName?></h1>
<div class="text-content">
<?php echo $content;?>
</div>
</div>
<div class="col2">
<p class="section-title"><?php echo Yii::t('site', 'Есть вопросы?');?></p>
<div class="text-content">
<?php echo Yii::t('site', 'Обращайтесь в наш PR-отдел.');?>
</div>
<?php $this->renderPartial('//snippets/sidebarContacts');?>
</div>
</div>
</div>
|