2011-10-11 10:06:51 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
2014-07-23 08:38:32 +00:00
|
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
2011-10-12 13:46:43 +00:00
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
2014-07-23 08:38:32 +00:00
|
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
2011-10-12 13:46:43 +00:00
|
|
|
$this->breadcrumb('系统管理');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
2011-10-11 10:06:51 +00:00
|
|
|
?>
|
2014-07-23 08:38:32 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="hidden-sm hidden-xs col-md-2">
|
|
|
|
<?= $this->partial('sys/left.phtml'); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-10 col-sm-12">
|
|
|
|
<h3>系统管理</h3>
|
|
|
|
<hr />
|
|
|
|
</div>
|
2011-10-12 08:50:27 +00:00
|
|
|
</div>
|