48 lines
2.0 KiB
PHTML
48 lines
2.0 KiB
PHTML
<?php
|
||
$config = Zend_Registry::get('config');
|
||
$this->headTitle($config->title->site);
|
||
$this->headTitle($this->infos['title']);
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/archives/">新闻中心</a>');
|
||
$this->breadcrumb('<a href="/archives/'.$this->ptype.'/'.$this->type.'">'.$this->infos['typename'].'</a>');
|
||
$this->breadcrumb($this->infos['title']);
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
if(!empty($this->infos['keyword'])) $keyword = $this->infos['keyword']; else $keyword = $this->infos['title'];
|
||
$this->headMeta()->appendName('keywords', $keyword);
|
||
$this->headMeta()->appendName('description', mb_substr($this->infos['description'],0,180,'utf-8'));
|
||
$this->headLink()->appendStylesheet('/static-sanji/css/new-list.css');
|
||
$this->headLink()->appendStylesheet('/static-sanji/css/new-detail.css');
|
||
?>
|
||
<div class="body-warp">
|
||
<div class="nav" id="nav">
|
||
<ul>
|
||
<?php
|
||
if(count($this->types))
|
||
{
|
||
foreach($this->types as $k=>$v)
|
||
{
|
||
$haed = "";
|
||
if(!empty($v[$this->deepField])) {$haed = str_repeat(' ',$v[$this->deepField]);}
|
||
echo '<li><a href="'.$v['url'].'">'.$haed.$v['title'].'</a></li>';
|
||
$haed = "";
|
||
}
|
||
}
|
||
?>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="content-warp">
|
||
<div class="container">
|
||
<h1 class="text-center"><?php echo $this->infos['title'];?></h1>
|
||
<div class="text-center">[<?php echo date("Y-m-d",strtotime($this->infos['ts_published']));?>] 来源 : <?php echo $this->infos['source'];?></div>
|
||
<?php if(!empty($this->mdinfo)){?>
|
||
<?php foreach($this->mdinfo as $v){ ?>
|
||
<div class="info">相关数据:《<a href="/data/<?= $v['uuid']?>"><?= $v['title']?></a>》</div>
|
||
<?php } } ?>
|
||
<?php echo $this->infos['body'];?>
|
||
</div>
|
||
</div>
|