2012-12-03 10:08:25 +00:00
|
|
|
|
<?php
|
|
|
|
|
$config = Zend_Registry::get('config');
|
|
|
|
|
$this->headTitle($config->title->site);
|
|
|
|
|
$this->headTitle($this->infos['title']);
|
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
2012-12-28 03:33:36 +00:00
|
|
|
|
$this->breadcrumb('<a href="/archives/">新闻中心</a>');
|
2012-12-04 09:31:14 +00:00
|
|
|
|
$this->breadcrumb('<a href="/archives/'.$this->ptype.'/'.$this->type.'">'.$this->infos['typename'].'</a>');
|
2012-12-03 10:08:25 +00:00
|
|
|
|
$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'));
|
|
|
|
|
?>
|
2013-03-28 07:12:10 +00:00
|
|
|
|
<style>
|
|
|
|
|
td{word-break:break-all;word-wrap:break-word;overflow:hidden;}
|
|
|
|
|
</style>
|
2013-03-25 09:21:37 +00:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="span3">
|
|
|
|
|
<div class="well sidebar-nav">
|
|
|
|
|
<ul class="nav nav-list">
|
|
|
|
|
<?php
|
|
|
|
|
if(count($this->types))
|
|
|
|
|
{
|
|
|
|
|
foreach($this->types as $k=>$v)
|
2012-12-03 10:08:25 +00:00
|
|
|
|
{
|
2013-03-25 09:21:37 +00:00
|
|
|
|
$haed = "";
|
|
|
|
|
if(!empty($v[$this->deepField])) {$haed = str_repeat(' ',$v[$this->deepField]);}
|
|
|
|
|
echo '<li><a href="'.$v['url'].'">'.$haed.$v['title'].'</a></li>';
|
|
|
|
|
$haed = "";
|
2012-12-03 10:08:25 +00:00
|
|
|
|
}
|
2013-03-25 09:21:37 +00:00
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</ul>
|
2012-12-03 10:08:25 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-03-25 09:21:37 +00:00
|
|
|
|
<div class="span9" id="archive_body">
|
|
|
|
|
<h2 class="text-center"><?php echo $this->infos['title'];?></h2>
|
|
|
|
|
<div class="text-center">时间 : <?php echo date("Y-m-d H:i",strtotime($this->infos['ts_published']));?> 来源 : <?php echo $this->infos['source'];?></div>
|
2012-12-05 07:12:38 +00:00
|
|
|
|
<?php if(!empty($this->mdinfo)){?>
|
2012-12-07 07:49:37 +00:00
|
|
|
|
<?php foreach($this->mdinfo as $v){ ?>
|
|
|
|
|
<div class="info">相关数据:《<a href="/data/<?= $v['uuid']?>"><?= $v['title']?></a>》</div>
|
|
|
|
|
<?php } } ?>
|
2012-12-03 10:08:25 +00:00
|
|
|
|
<div class="archive_content">
|
|
|
|
|
<table width="100%">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
2012-12-04 04:34:47 +00:00
|
|
|
|
<?php
|
|
|
|
|
if(!empty($this->infos['image']))
|
|
|
|
|
{
|
2013-03-25 09:21:37 +00:00
|
|
|
|
echo '<div id="archive_img" class="text-center"><img src="'.$this->infos['image'].'" class="img-polaroid" /></div>';
|
2012-12-04 04:34:47 +00:00
|
|
|
|
}
|
|
|
|
|
?>
|
2012-12-03 10:08:25 +00:00
|
|
|
|
<?php echo $this->infos['body'];?>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2013-03-25 09:21:37 +00:00
|
|
|
|
</div>
|
2012-12-03 10:08:25 +00:00
|
|
|
|
</div>
|
|
|
|
|
<script>
|
2013-03-25 09:21:37 +00:00
|
|
|
|
$('.archive_content img').css("max-width",$('#archive_body').width());
|
2012-12-03 10:08:25 +00:00
|
|
|
|
</script>
|