2011-09-20 09:12:02 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
2014-09-13 02:18:32 +00:00
|
|
|
<div class="hidden-sm hidden-xs col-md-2">
|
2011-09-20 09:12:02 +00:00
|
|
|
<?= $this->partial('stat/left.phtml'); ?>
|
|
|
|
</div>
|
2014-09-13 02:18:32 +00:00
|
|
|
<div class="col-md-10 col-sm-12">
|
2013-05-27 15:25:13 +00:00
|
|
|
<iframe id="tl" src="http://westdc.westgis.ac.cn/webalizer/index.html" style="width:100%;height:700px;border:none;"></iframe>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
$('#tl').height($(window).height());
|
|
|
|
</script>
|