22 lines
643 B
PHTML
22 lines
643 B
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle($this->config->title->author);
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||
|
$this->headLink()->appendStylesheet('/css/author.css');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('<a href="/author">数据管理</a>');
|
||
|
$this->breadcrumb('我的数据');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
?>
|
||
|
<div id="page">
|
||
|
<div class="subnav">
|
||
|
<?= $this->partial('author/navi.phtml'); ?>
|
||
|
</div>
|
||
|
|
||
|
<!-- 页面内容 -->
|
||
|
<div id="wapper">
|
||
|
<?php echo $this->info; ?>
|
||
|
</div>
|
||
|
<!-- //页面内容 -->
|
||
|
</div>
|