17 lines
587 B
PHTML
17 lines
587 B
PHTML
<?php
|
|
$this->headTitle('寒区旱区科学数据中心');
|
|
if(!empty($this->pageTitle))
|
|
{
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headTitle($this->pageTitle);
|
|
}
|
|
?>
|
|
<div class="row-fluit">
|
|
<div class="hero-unit">
|
|
<h2><?= $this->content ?><?php if(!empty($this->url)) echo ",系统正在为您跳转..."?></h2>
|
|
<?php if(!empty($this->url)) {?>
|
|
<a href="<?= $this->url ?>">如果没有跳转请点击这样</a>
|
|
<script language="javascript">setTimeout("self.location='<?= $this->url?>'",3000);</script>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|