34 lines
1.5 KiB
PHTML
34 lines
1.5 KiB
PHTML
<?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="/heihe/">'.$this->config->title->heihe.'</a>');
|
||
$this->breadcrumb('土地利用数据');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
<div class="row">
|
||
<div class="span2">
|
||
<?= $this->partial('hiwater/navi.phtml'); ?>
|
||
</div>
|
||
<div class="span10">
|
||
<div><?= $this->breadcrumb() ?> </div>
|
||
<div id="intro">
|
||
<p>1:10万土地利用数据是在中国科学院“八五”重大应用项目《全国资源环境遥感宏观调查与动态研究》组织了中国科学院所属19个研究所的遥感科技队伍,以卫星遥感为手段,在三年内基于Landsat MSS,TM和ETM遥感数据建立了中国1:10万土地利用影像和矢量数据库。</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="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||
<?php endforeach; ?>
|
||
</ol>
|
||
</div>
|
||
<?php endif; ?>
|
||
</div>
|
||
</div>
|