38 lines
1.2 KiB
PHTML
38 lines
1.2 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('知识积累');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/knowledge">知识积累</a>');
|
|
$this->breadcrumb('数据中心');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div class="row">
|
|
<div class="span3">
|
|
<?= $this->partial('knowledge/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<div id="content">
|
|
<h2>数据中心文献库</h2>
|
|
<div>
|
|
<?php if (count($this->paginator)): ?>
|
|
<ul>
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
<li> <?php echo $item['reference']; ?>
|
|
<?php if (!empty($item['link'])) :
|
|
echo ' <a href="'.$item['link'].'">下载</a>';
|
|
endif;
|
|
?>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" >
|
|
$('#Nav-knowledge-datacenter').addClass('active');
|
|
</script>
|