新闻列表页面样式
This commit is contained in:
parent
e0fbdda367
commit
51cbbdd51b
|
@ -7,7 +7,7 @@ $this->breadcrumb('<a href="/">首页</a>');
|
|||
$this->breadcrumb('关于我们');
|
||||
$this->breadcrumb()->setSeparator(' > ');
|
||||
?>
|
||||
<div class="row">
|
||||
<div class="row-fluid">
|
||||
<div class="span3">
|
||||
<?= $this->partial('about/navi.phtml'); ?>
|
||||
</div>
|
||||
|
|
|
@ -28,27 +28,29 @@ $this->theme->AppendPlus($this,'masonry');
|
|||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="span9">
|
||||
<div class="row" id="container">
|
||||
<div class="Lbox">
|
||||
<h4 class="box-title">新闻列表</h4>
|
||||
<ol >
|
||||
<?php
|
||||
foreach($this->lists as $v)
|
||||
{?>
|
||||
<?php if(count($v['list'])>0) {?>
|
||||
<div class="span4 items">
|
||||
<h3><a href="<?= $v['url'] ?>"><?= $v['title'] ?></a></h3>
|
||||
<div class="list-content">
|
||||
<ul class="unstyled">
|
||||
|
||||
<?php foreach($v['list'] as $arc){?>
|
||||
<li><small>[<?php echo date("Y-m-d",strtotime( $arc['ts_published'] )); ?>]</small>
|
||||
<a href="<?= $arc['url']?>"><?= $arc['title'] ?></a></li>
|
||||
<li><a href="<?= $arc['url']?>"><?= $arc['title'] ?></a><small>[<?php echo date("Y-m-d",strtotime( $arc['ts_published'] )); ?>]</small></li>
|
||||
<?php }?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<?php } }
|
||||
?>
|
||||
|
||||
<?php } }?>
|
||||
</ol>
|
||||
</div>
|
||||
<div class="pagenavi">
|
||||
<?= $this->paginator; ?>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.span9 -->
|
||||
|
||||
</div>
|
||||
<script>
|
||||
$('#container').masonry({
|
||||
|
|
|
@ -44,7 +44,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
|||
<h4 class="box-title">新闻列表</h4>
|
||||
<ol >
|
||||
<?php
|
||||
# print_r($this->paginator);
|
||||
if(count($this->paginator))
|
||||
{
|
||||
foreach ($this->paginator as $v)
|
||||
|
|
|
@ -15,3 +15,4 @@
|
|||
})
|
||||
}(window.jQuery)
|
||||
</script>
|
||||
<script>setPage();</script>
|
|
@ -26,12 +26,11 @@
|
|||
} else {
|
||||
echo '<a href="/account/login">登 录</a> | <a href="/account/register">注 册</a>';
|
||||
} ?>
|
||||
|
||||
</p>
|
||||
<?php $current_url =$_SERVER["REQUEST_URI"]?>
|
||||
<p >
|
||||
<ul class="nav nav-pills pull-right" id="mainmenu">
|
||||
<li style="padding-right:20px"><a href="/">首 页</a></li>
|
||||
<li style="padding-right:20px"<?php if($current_url=='/') echo " class='active'";?> ><a href="/">首 页</a></li>
|
||||
<li style="padding-right:20px"><a href="/archives/">新 闻</a></li>
|
||||
<li style="padding-right:20px"><a href="/data">数 据</a></li>
|
||||
<li style="padding-right:20px"><a href="/about">关于我们</a></li>
|
||||
|
|
Loading…
Reference in New Issue