westdc-zf1/application/default/views/scripts/index/index.phtml

99 lines
3.5 KiB
PHTML
Raw Normal View History

2011-10-26 03:21:28 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle('首页');
$this->headTitle()->setSeparator(' - ');
$auth = Zend_Auth::getInstance();
2014-05-27 09:56:38 +00:00
2011-10-26 03:21:28 +00:00
?>
2013-05-17 04:34:06 +00:00
2014-05-27 09:56:38 +00:00
<!-- 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'] ?>"><?= mb_strlen($v['title']) > 23 ? mb_substr($v['title'],0,23,'utf-8')."...":$v['title'] ?></a>
</li>
<?php } ?>
<span class="pull-right"><a href="list.htm" 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){ ?>
2013-12-13 08:42:34 +00:00
<li>
<span class="pull-right">[<?= date("Y-m-d",strtotime($v['ts_published']))?>]</span>
<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><?= mb_strlen($v['title']) > 26 ? mb_substr($v['title'],0,26,'utf-8')."...":$v['title'] ?></a>
</li>
2013-06-01 01:21:17 +00:00
<?php } ?>
2014-05-27 09:56:38 +00:00
<span class="pull-right"><a href="list.htm" target="_blank" class="more">更多>></a></span>
</ul>
</div>
</div>
<!-- /.span4 -->
2013-10-17 03:15:08 +00:00
</div>
2014-05-27 09:56:38 +00:00
<!-- /.row -->
<div style="margin-bottom:20px;"><img src="/sjyportal/img/protect.jpg" </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'] ?>"><?= mb_strlen($v['title']) > 26 ? mb_substr($v['title'],0,26,'utf-8')."...":$v['title'] ?></a>
</li>
<?php } ?>
<span class="pull-right"><a href="list.htm" 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'] ?>"><?= mb_strlen($v['title']) > 26 ? mb_substr($v['title'],0,26,'utf-8')."...":$v['title'] ?></a>
</li>
<?php } ?>
<span class="pull-right"><a href="list.htm" 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'] ?>"><?= mb_strlen($v['title']) > 26 ? mb_substr($v['title'],0,26,'utf-8')."...":$v['title'] ?></a>
</li>
<?php } ?>
<span class="pull-right"><a href="list.htm" target="_blank" class="more">更多>></a></span>
</ul>
</div>
</div>
<!-- /.span4 -->
</div>
2014-05-27 09:56:38 +00:00
<!-- /.row -->
</div>
2014-05-27 09:56:38 +00:00
<!-- /.container -->