westdc-zf1/application/default/views/scripts/water/category.phtml

42 lines
1.6 KiB
PHTML
Raw Normal View History

2010-06-23 15:13:26 +00:00
<?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(' - ');
2010-06-28 14:20:25 +00:00
$this->headLink()->appendStylesheet('/css/water.css');
2010-06-23 15:13:26 +00:00
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
2010-06-28 14:20:25 +00:00
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
$this->breadcrumb('分类浏览:'.$this->codename);
2010-06-23 15:13:26 +00:00
$this->breadcrumb()->setSeparator(' > ');
?>
2010-06-28 14:20:25 +00:00
<!--
2010-06-23 15:13:26 +00:00
<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>
2010-06-28 14:20:25 +00:00
-->
2010-06-23 15:13:26 +00:00
<div id='metacontent'>
<?php if (!empty($this->metadata)) : ?>
2010-06-28 14:20:25 +00:00
<!-- <h1>当前浏览分类:<?php echo $this->codename; ?></h1> -->
<?php echo $this->page->getNavigation(); ?>
2010-06-23 15:13:26 +00:00
<hr />
2010-06-28 14:20:25 +00:00
<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>
2010-06-23 15:13:26 +00:00
</div>
2010-06-28 14:20:25 +00:00
<hr />
<?php echo ''.$this->page->getNavigation();
2010-06-23 15:13:26 +00:00
endif; ?>
2010-06-28 14:20:25 +00:00
</div>