41 lines
1.3 KiB
PHTML
41 lines
1.3 KiB
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle('成果发表');
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/about.css');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('<a href="/about">关于本站</a>');
|
||
|
$this->breadcrumb('<a href="/about/publication">成果发表</a>');
|
||
|
$this->breadcrumb('专利与著作权');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
?>
|
||
|
<div id='sidebar'>
|
||
|
<div id='leftnavi'>
|
||
|
<?= $this->partial('about/navi.phtml'); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="content">
|
||
|
<h2>成果发表</h2>
|
||
|
<div id="tabs-controller">
|
||
|
<ul>
|
||
|
<li class="box-shadow"><a class="text-shadow" href="/about/publication/">期刊文章</a></li>
|
||
|
<li class="box-shadow"><a class="text-shadow" href="/about/publication/ac/report">文档报告</a></li>
|
||
|
<li class="box-shadow active"><a class="text-shadow" href="/about/publication/ac/patent">专利与著作权</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div id="datalist">
|
||
|
<?php if (count($this->paginator)): ?>
|
||
|
<ul>
|
||
|
<?php foreach ($this->paginator as $item): ?>
|
||
|
<li> <?php echo $item['title']; ?>
|
||
|
<?php if (!empty($ref->link)) :
|
||
|
echo ' <a href="'.$ref->link.'">下载</a>';
|
||
|
endif;
|
||
|
?>
|
||
|
</li>
|
||
|
<?php endforeach; ?>
|
||
|
</ul>
|
||
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||
|
<?php endif; ?>
|
||
|
</div>
|
||
|
</div>
|