30 lines
1.0 KiB
PHTML
30 lines
1.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="/">首页</a>');
|
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
|
$this->breadcrumb('数据汇交计划');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->theme->AppendPlus($this,'colorbox');
|
|
?>
|
|
<div class="row">
|
|
<div class="span2">
|
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span10">
|
|
<div><?= $this->breadcrumb() ?> </div>
|
|
<?php if(!empty($this->error)) {?>
|
|
<div id="intro"><?php echo $this->error;?></div>
|
|
<?php }else{?>
|
|
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" charset="utf-8">
|
|
$(document).ready(function(){
|
|
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
|
});
|
|
</script>
|