23 lines
757 B
PHTML
23 lines
757 B
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->data);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
|
$this->nav[] = array('link'=>"/haihe",'title'=>'海河流域观测数据集');
|
|
?>
|
|
<?= $this->render('breadcrumbs.phtml'); ?>
|
|
<div class="row">
|
|
<div class="span2">
|
|
<?= $this->partial('haihe/navi.phtml'); ?>
|
|
</div>
|
|
|
|
<div class="span10">
|
|
<div id="intro">
|
|
<h1><?php if(!empty($this->info['title'])) echo $this->info['title']; ?></h1>
|
|
<table>
|
|
<tr><td><?php if(!empty($this->info['body'])) echo $this->info['body'];?></td></tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|