2012-03-27 07:02:36 +00:00
|
|
|
<?php
|
2012-04-12 04:06:58 +00:00
|
|
|
$this->headTitle($this->config->title->site);
|
2012-04-09 07:50:57 +00:00
|
|
|
$this->headTitle('新闻中心');
|
2012-03-27 07:02:36 +00:00
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/css/news.css');
|
|
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
2012-04-09 07:50:57 +00:00
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/news">新闻中心</a>');
|
2012-03-27 07:02:36 +00:00
|
|
|
$this->breadcrumb($this->title);
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
|
|
|
<div class="full center clear" id="body">
|
|
|
|
<div class="w300 Lfloat clear">
|
|
|
|
<div class="tbox">
|
2012-04-12 04:06:58 +00:00
|
|
|
<div class="title">新闻分类</div>
|
2012-03-27 07:02:36 +00:00
|
|
|
<div class="content navmenu">
|
|
|
|
<ul>
|
|
|
|
<?php
|
|
|
|
if(count($this->types))
|
|
|
|
{
|
|
|
|
foreach($this->types as $k=>$v)
|
|
|
|
{
|
2012-09-04 07:16:19 +00:00
|
|
|
if($v['fid']==0)
|
|
|
|
{
|
|
|
|
echo '<li><a href="/news/'.$v['url'].'">'.$v['title'].'</a></li>';
|
|
|
|
}
|
|
|
|
foreach($this->types as $vd)
|
|
|
|
{
|
|
|
|
if($vd['fid']==$v['id'])
|
|
|
|
{
|
|
|
|
echo '<li> - <a href="/news/'.$vd['url'].'">'.$vd['title'].'</a></li>';
|
|
|
|
}
|
|
|
|
}
|
2012-03-27 07:02:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="Rfloat clear" id="archives_list">
|
|
|
|
<div class="archives_list">
|
|
|
|
<ul>
|
|
|
|
<?php
|
|
|
|
if(count($this->paginator))
|
|
|
|
{
|
|
|
|
foreach ($this->paginator as $v)
|
|
|
|
{
|
|
|
|
$description = "";
|
|
|
|
if(empty($v['description']))
|
|
|
|
{
|
|
|
|
$description = "No description";
|
|
|
|
}else if (mb_strlen($v['description'])>160)
|
|
|
|
{
|
|
|
|
$description = mb_substr($v['description'],0,160,'utf-8').'...<a href="/news/'.$v['url'].'/archive-'.$v['id'].'.html" class="more">(more)</a>';
|
|
|
|
}else{
|
|
|
|
$description = $v['description'];
|
|
|
|
}
|
|
|
|
echo '<li>
|
|
|
|
<a href="/news/'.$v['url'].'/archive-'.$v['id'].'.html" class="title">'.$v['title'].'</a><br />
|
|
|
|
<small>TIME : '.date("Y-m-d H:i",strtotime( $v['ts_published'] )).'</small>
|
|
|
|
<p>'.$description.'</p>
|
|
|
|
</li>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo '暂无数据';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$('#archives_list').width($('#body').width()-320);
|
|
|
|
</script>
|