westdc-zf1/application/default/views/scripts/archives/archive.phtml

56 lines
2.7 KiB
PHTML
Raw Normal View History

<?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>');
$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);
2013-04-09 13:25:30 +00:00
$this->headMeta()->appendName('description', mb_substr($this->infos['description'],0,180,'utf-8'));
2013-04-17 01:56:37 +00:00
$this->headLink()->appendStylesheet('/css/news.css');
?>
<div class="row">
<div class="span3">
2013-04-09 12:52:14 +00:00
<div class="bs-review-nav sidebar-nav">
2013-04-09 13:25:30 +00:00
<ul class="nav nav-list bs-review-sidenav">
2013-04-09 12:52:14 +00:00
<li><a href="/archives"><i class="icon-chevron-right"></i>新闻中心</a></li>
<?php
if(count($this->types))
{
foreach($this->types as $k=>$v)
{
$haed = "";
if(!empty($v[$this->deepField])) {$haed = str_repeat(' ',$v[$this->deepField]);}
2013-04-09 12:52:14 +00:00
echo '<li'.($v['code']==$this->type?' class="active"':'').'><a href="'.$v['url'].'"><i class="icon-chevron-right"></i>'.$haed.$v['title'].'</a></li>';
$haed = "";
}
}
?>
</ul>
</div>
</div>
<div class="span9" id="archive_body">
2014-07-15 23:35:57 +00:00
<h3 class="text-center" style="font-family:'微软雅黑', '宋体'; color:#08c"><?php echo $this->infos['title'];?></h3>
<div class="text-center" style="font-size:11px; color:#BCBCBC">&nbsp;&nbsp;发布时间&nbsp;:&nbsp;<span style="font-size:11px; color:#08c"><?php echo date("Y-m-d",strtotime($this->infos['ts_published']));?></span>&nbsp;&nbsp;来源&nbsp;:&nbsp;<span style="font-size:11px; color:#08c"><?php echo $this->infos['source'];?></span></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 } } ?>
2014-07-15 23:35:57 +00:00
<div class="media" style="font-family:'微软雅黑''宋体';font-size:18px; line-height:200%">
2013-04-09 13:33:43 +00:00
<div class="pull-left">
<?php echo $this->infos['body'];?>
2014-07-15 23:35:57 +00:00
</div>
2013-04-09 13:33:43 +00:00
<?php
if(!empty($this->infos['image']))
{
2013-04-09 13:25:30 +00:00
echo ' <a class="inline" href="#"><img class="inline span3" src="'.$this->infos['image'].'" data-src="holder.js/128x128" /></a>';
}
2013-04-09 13:25:30 +00:00
?>
</div>
</div>
</div>