98 lines
3.4 KiB
PHTML
Executable File
98 lines
3.4 KiB
PHTML
Executable File
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('首页');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$auth = Zend_Auth::getInstance();
|
|
|
|
?>
|
|
|
|
<!-- Wrap the rest of the page in another container to center all the content. -->
|
|
<link href="../../../../../htdocs/sjyportal/css/style.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
<!-- Three columns of text below the carousel -->
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="span4">
|
|
<div class="box">
|
|
<h4 class="box-title">焦点推荐</h4>
|
|
<ul>
|
|
<?php foreach($this->list_news as $k=>$v){ ?>
|
|
<li>
|
|
<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><i class="icon-ok-sign"> </i><?= mb_strlen($v['title']) > 23 ? mb_substr($v['title'],0,23,'utf-8')."...":$v['title'] ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
<span class="pull-right"><a href="/archives/news/localnews" target="_blank" class="more">更多>></a></span>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- /.span4 -->
|
|
<div class="span8">
|
|
<div class="box">
|
|
<h4 class="box-title">新闻公告</h4>
|
|
<ul>
|
|
<?php foreach($this->list_news as $k=>$v){ ?>
|
|
<li>
|
|
<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><i class=" icon-ok-sign"> </i><?= $v['title'] ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
<span class="pull-right"><a href="/archives/news/localnews" target="_blank" class="more">更多>></a></span>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- /.span4 -->
|
|
|
|
</div>
|
|
<!-- /.row -->
|
|
<div style="margin-bottom:20px;"><img src="/sjyportal/img/protect.jpg" class="img-rounded" </img></div>
|
|
|
|
<!-- Three columns of text below the carousel -->
|
|
<div class="row-fluid">
|
|
<div class="span4">
|
|
<div class="box">
|
|
<h4 class="box-title">最新观测数据</h4>
|
|
<ul>
|
|
<?php foreach($this->list_news as $k=>$v){ ?>
|
|
<li>
|
|
<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><i class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
<span class="pull-right"><a href="/archives/news/localnews" target="_blank" class="more">更多>></a></span>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- /.span4 -->
|
|
<div class="span4">
|
|
<div class="box">
|
|
<h4 class="box-title">最新可视化数据</h4>
|
|
<ul>
|
|
<?php foreach($this->list_news as $k=>$v){ ?>
|
|
<li>
|
|
<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><i class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
<span class="pull-right"><a href="/archives/news/localnews" target="_blank" class="more">更多>></a></span>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- /.span4 -->
|
|
<div class="span4">
|
|
<div class="box">
|
|
<h4 class="box-title">热门数据集</h4>
|
|
<ul>
|
|
<?php foreach($this->list_news as $k=>$v){ ?>
|
|
<li>
|
|
<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><i class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
<span class="pull-right"><a href="/archives/news/localnews" target="_blank" class="more">更多>></a></span>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- /.span4 -->
|
|
|
|
</div>
|
|
<!-- /.row -->
|
|
</div>
|
|
|
|
<!-- /.container -->
|