22 lines
759 B
PHTML
22 lines
759 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'=>"/water",'title'=>'黑河生态水文遥感试验');
|
|
?>
|
|
<?= $this->render('breadcrumbs.phtml'); ?>
|
|
<div class="row">
|
|
<div class="span3">
|
|
<?= $this->partial('hiwater/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<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>
|