headTitle($this->config->title->site); $this->headTitle('新闻中心'); $this->headTitle()->setSeparator(' - '); $this->breadcrumb('首页'); $this->breadcrumb('新闻中心'); $this->breadcrumb($this->title); $this->breadcrumb()->setSeparator(' > '); ?>
    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').'...(more)'; }else{ $description = $v['description']; } echo '
  • TIME : '.date("Y-m-d H:i",strtotime( $v['ts_published'] )).''; if(!empty($v['image'])) { echo ''; } echo '

    '.$v['title'].'

    '.$description.'

  • '; } } else { echo '暂无数据'; } ?>