42 lines
1.6 KiB
PHTML
Executable File
42 lines
1.6 KiB
PHTML
Executable File
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->data);
|
|
$this->headTitle('分类浏览');
|
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
|
$this->breadcrumb('分类浏览:'.$this->codename);
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<!--
|
|
<div id='leftnav'>
|
|
<fieldset><legend>数据集类别</legend>
|
|
<ul>
|
|
<?php foreach($this->category as $cg) : ?>
|
|
<li><a href='/data/category/code/<?php echo $cg['code']; ?>'><?php (empty($cg['name_zh']))?print($cg['name']):print($cg['name_zh']); ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
|
<?php endforeach; ?>
|
|
</ul></fieldset>
|
|
</div>
|
|
-->
|
|
<div id='metacontent'>
|
|
<?php if (!empty($this->metadata)) : ?>
|
|
<!-- <h1>当前浏览分类:<?php echo $this->codename; ?></h1> -->
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
<hr />
|
|
<div class="mdlist">
|
|
<ol start="<?php echo $this->offset; ?>">
|
|
<?php foreach($this->metadata as $md) : ?>
|
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']);?></a></li>
|
|
<p><?php echo mb_strlen($md['description'],'UTF-8')>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></p>
|
|
<?php endforeach; ?>
|
|
</ol>
|
|
</div>
|
|
<hr />
|
|
<?php echo ''.$this->page->getNavigation();
|
|
endif; ?>
|
|
|
|
</div>
|