add document action
This commit is contained in:
parent
195a1e64d6
commit
7af7aae8ad
|
@ -0,0 +1,52 @@
|
||||||
|
<?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/">数字黑河</a>');
|
||||||
|
$this->breadcrumb('试验文档');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div> </div>
|
||||||
|
<div id="intro">
|
||||||
|
<h3>黑河数据清单:</h3>
|
||||||
|
<ol>
|
||||||
|
<li>数据清单详版2011</li>
|
||||||
|
<li>数据清单简版2011</li>
|
||||||
|
</ol>
|
||||||
|
<h3>数字黑河总结文献:</h3>
|
||||||
|
<ol>
|
||||||
|
<li>李新, 程国栋, 吴立宗. 数字黑河的思考与实践1:为流域科学服务的数字流域. 地球科学进展, 2010, 25(3): 297-305.
|
||||||
|
</li>
|
||||||
|
<li>李新, 吴立宗, 马明国, 盖迎春, 冉有华, 王亮绪, 南卓铜. 数字黑河的思考与实践2:数据集成. 地球科学进展, 2010, 25(3): 306-316. </li>
|
||||||
|
<li>Li X, Nan ZT, Cheng GD, Ding YJ, Wu LZ, Wang LX, Wang J, Ran YH, Li HX, Pan XD, Zhu ZM. Toward an improved data stewardship and service for environmental and ecological science data in west China. International Journal of Digital Earth, 2011, 4(4): 347-359. DOI: 10.1080/17538947.2011.558123. </li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<h3>数据相关文献</h3>
|
||||||
|
<?php if ($this->refs) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
|
<?php foreach($this->refs as $md) : ?>
|
||||||
|
<li><?php echo $md['reference'];
|
||||||
|
if ($md['link'])
|
||||||
|
{
|
||||||
|
echo ' <a href="'.$md['link'].'">下载</a>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -22,6 +22,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="/heihe/document">黑河文档</a></li>
|
||||||
<li><a href="/heihe/doc">word版元数据</a></li>
|
<li><a href="/heihe/doc">word版元数据</a></li>
|
||||||
<li><a href="/heihe/browse">整体浏览</a></li>
|
<li><a href="/heihe/browse">整体浏览</a></li>
|
||||||
<li><a href="/heihe/category">ISO19115分类</a></li>
|
<li><a href="/heihe/category">ISO19115分类</a></li>
|
||||||
|
@ -30,6 +31,8 @@
|
||||||
<li><a href="/heihe/timeline">时间轴导航</a></li>
|
<li><a href="/heihe/timeline">时间轴导航</a></li>
|
||||||
<li><a href="/heihe/timemap">时空联合导航</a></li>
|
<li><a href="/heihe/timemap">时空联合导航</a></li>
|
||||||
<li>WebGIS地图浏览</li>
|
<li>WebGIS地图浏览</li>
|
||||||
|
<li>黑河计划数据汇交</li>
|
||||||
|
<li>数据使用协议</li>
|
||||||
</ul>
|
</ul>
|
||||||
<form id="search" enctype="application/x-www-form-urlencoded" action="/heihe/search" method="post">
|
<form id="search" enctype="application/x-www-form-urlencoded" action="/heihe/search" method="post">
|
||||||
<input type="text" name="q" id="q" value="<?php echo (empty($this->key))?'回车搜索标题和摘要':$this->key; ?>" onfocus="myfocus(this);" onblur="myblur(this);">
|
<input type="text" name="q" id="q" value="<?php echo (empty($this->key))?'回车搜索标题和摘要':$this->key; ?>" onfocus="myfocus(this);" onblur="myblur(this);">
|
||||||
|
|
Loading…
Reference in New Issue