33 lines
1.4 KiB
PHTML
33 lines
1.4 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="/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">
|
||
<img src="/images/glacier/landsat.png" class="pull-right" />
|
||
系统收集了可用于冰川编目的各种遥感数据,包括Landsat TM/ETM+、ASTER、SPOT、ALOS,其中Landsat TM/ETM+基本覆盖全部冰川区,其他遥感数据仅覆盖部分冰川区。
|
||
</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>
|