33 lines
1.2 KiB
PHTML
33 lines
1.2 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">
|
|
<p>与多年冻土相关的测量数据,包括探地雷达测量的地下冰厚度、冻土层上限等。
|
|
</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>
|