2013-04-16 09:19:06 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle($this->config->title->data);
|
|
|
|
|
$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="/glacier/">'.$this->config->title->glacier.'</a>');
|
|
|
|
|
$this->breadcrumb('冰川编目数据');
|
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
|
?>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="span3">
|
|
|
|
|
<?= $this->partial('glacier/navi.phtml'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="span9">
|
|
|
|
|
<div id="intro">
|
|
|
|
|
<p>冰川编目数据:基于遥感影像解译获得的反应我国2005年前后冰川现状的冰川分布图及其基本属性。除了包括中国全境的冰川编目数据外,还包括祁连山、天山、贡嘎山、纳木错流域、长江源区、年楚河流域和珠穆朗玛峰北坡等典型地区的多年代冰川分布数据。
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<hr />
|
|
|
|
|
<?php if ($this->metadata) : ?>
|
|
|
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
|
|
|
<div id="mdlist">
|
|
|
|
|
<ol start="<?php echo $this->offset; ?>">
|
|
|
|
|
<?php foreach($this->metadata as $md) : ?>
|
|
|
|
|
<li><a href="/glacier/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</ol>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|