westdc-zf1/application/default/views/scripts/water/document.phtml

50 lines
2.0 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="/">Home</a>');
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
$this->breadcrumb('<a href="/water/">WATER</a>');
$this->breadcrumb('Documents');
$this->breadcrumb()->setSeparator(' > ');
?>
<div class="row">
<div class="span3">
<?= $this->partial('water/navi.phtml'); ?>
</div>
<div class="span9">
<div id="intro">
<h3>Document</h3>
<ol>
<li><a href="/service/attach/id/1532">WATER Data Report</a></li>
<li><a href="/service/attach/id/1531">Meteorological and Hydrological Experiments Report</a></li>
</ol>
<h3>Recommended Publications:</h3>
<p>Li X, Li XW, Li ZY, Ma MG, Wang J, Xiao Q, Liu Q, Che T, Chen EX, Yan GJ, Hu
ZY, Zhang LX, Chu RZ, Su PX, Liu QH, Liu SM, Wang JD, Niu Z, Chen Y, Jin R,
Wang WZ, Ran YH, Xin XZ, Ren HZ. Watershed Allied Telemetry Experimental
Research. Journal of Geophysical Research, 2009, 114(D22103),
doi:10.1029/2008JD011590. <a href="/service/attach/id/274">Download</a>
</p>
<hr />
<h3>Publications</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['attid'])
{
echo '<a href="/knowledge/paper/id/'.$md['id'].'"><i class="icon-info-sign text-success"></i>Detail</a>';
echo ' <a href="/service/attach/id/'.$md['attid'].'"><i class="icon-download text-success"></i>Download</a>';
}
?>
</li>
<?php endforeach; ?>
</ol>
</div>
<?php endif; ?>
</div>
</div>