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
|
<?php
/**
* @var MessageController $this
*/
?>
<?php $this->beginContent('/layouts/base'); ?>
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<style>
#sidebar-tree a.active{
font-weight: bold;
}
</style>
<div class="nav nav-list" id="sidebar-tree">
<div class="nav-header">Страницы раздела</div>
<?php
$this->widget('CTreeView', array(
'data' => $this->sidebarTree,
));
?>
</div>
</div>
<div class="span10">
<?php echo $content;?>
</div>
</div>
</div>
<?php $this->endContent(); ?>
|