25 lines
787 B
PHTML
25 lines
787 B
PHTML
|
<?php
|
||
|
$config = Zend_Registry::get('config');
|
||
|
$this->headTitle($config->title->site);
|
||
|
$this->headTitle($config->title->qzr);
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('<a href="/qzr/">青藏铁路</a>');
|
||
|
$this->breadcrumb($this->infos['title']);
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
if(!empty($this->infos['keyword'])) $keyword = $this->infos['keyword']; else $keyword = $this->infos['title'];
|
||
|
?>
|
||
|
<div id='sidebar'>
|
||
|
<div id='leftnavi'>
|
||
|
<?= $this->partial('qzr/navi.phtml'); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id='right'>
|
||
|
|
||
|
<p>
|
||
|
<?php echo $this->infos['body'];?>
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|