2014-06-11 01:22:47 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/admin/news">新闻中心</a>');
|
|
|
|
?>
|
|
|
|
<div class="row-fluid">
|
2014-06-12 08:21:21 +00:00
|
|
|
<div class="span2">
|
2014-06-11 01:22:47 +00:00
|
|
|
<?= $this->partial('news/left.phtml'); ?>
|
|
|
|
</div>
|
2014-06-12 08:21:21 +00:00
|
|
|
<div class="span10">
|
2014-06-11 01:22:47 +00:00
|
|
|
|
2014-06-12 08:21:21 +00:00
|
|
|
<h3>新闻中心 <small>概况</small></h3>
|
2014-06-11 01:22:47 +00:00
|
|
|
<hr/>
|
2014-06-12 08:21:21 +00:00
|
|
|
<ul class="unstyled">
|
2014-06-11 01:22:47 +00:00
|
|
|
<li>共 <?php echo $this->totle['c'];?> 条档案</li>
|
|
|
|
<li>栏目 <?php echo $this->typec['c'];?> 个</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
|
|
$('.title').bind('click', function() {
|
|
|
|
$('.pad').css('display','none');
|
|
|
|
$(this).next('.listingDetails').children('.pad').show();
|
|
|
|
});
|
|
|
|
$('.closepad').bind('click', function() {
|
|
|
|
$('.pad').css('display','none');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function showpad(id){
|
|
|
|
$('#titlebtn'+id).click();
|
|
|
|
}
|
2011-09-23 07:34:40 +00:00
|
|
|
</script>
|