73 lines
2.2 KiB
PHTML
73 lines
2.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="/water/">黑河综合遥感联合试验</a>');
|
|
$this->breadcrumb('上游寒区水文试验');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
|
|
<div id='sidebar'>
|
|
<div id='leftnavi'>
|
|
<?= $this->partial('water/navi.phtml'); ?>
|
|
</div>
|
|
</div>
|
|
<div id='right'>
|
|
<div id="intro">
|
|
|
|
<p> 上游寒区水文试验区包括重点试验区、加密观测区和观测点。重点试验区为黑河上游东支八宝河子流域。加密观测区选择冰沟小流域,
|
|
开展降雨降雪观测,地面-遥感同步观测,以及寒区水文过程观测。观测点选择冰沟垭口、
|
|
俄堡岭垭口、野牛山头滩垭口、海潮坝、阿柔乡和扁都口。
|
|
上游寒区水文试验区设置见下图。</p>
|
|
<img src="/images/water/cold.jpg" />
|
|
</div>
|
|
<hr />
|
|
<?php if ($this->metadata) : ?>
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
<div id="mdlist">
|
|
<ol>
|
|
<?php foreach($this->metadata as $md) : ?>
|
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ol>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
|
|
<!--
|
|
|
|
<div id='tools'>
|
|
<?= $this->partial('water/tools.phtml'); ?>
|
|
</div>
|
|
|
|
<div id="links">
|
|
|
|
<h3>
|
|
<?php echo $this->searchform; ?>
|
|
<a href="/data/advancesearch">高级搜索</a></h3>
|
|
|
|
|
|
<?php if ($this->keyword) : ?>
|
|
<div id='keyword'>
|
|
<?php
|
|
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
|
foreach($this->keywords as $type=>$kcg) :
|
|
if (is_array($kcg) && count($kcg)>0 ) :
|
|
?>
|
|
<fieldset><legend><a href="/water/tag/"><?php echo $keytypezh[$type]; ?></a></legend>
|
|
<ul>
|
|
<?php foreach($kcg as $cg) : ?>
|
|
<li><a href='/water/tag/<?php echo $cg['keyword']; ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
</fieldset>
|
|
<?php endif;endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
-->
|