24 lines
739 B
PHTML
24 lines
739 B
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle($this->config->title->review);
|
||
|
$this->headTitle('元数据评审说明');
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('<a href="/review">'.$this->config->title->review.'</a>');
|
||
|
$this->breadcrumb('元数据评审说明');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
$this->headScript()->appendFile('/js/pubfunc.js');
|
||
|
?>
|
||
|
<div id='sidebar'>
|
||
|
<div id='leftnavi'>
|
||
|
<?= $this->partial('review/navi.phtml'); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id='help'>
|
||
|
<h1>为什么要进行数据评审?</h1>
|
||
|
<p></p>
|
||
|
<h1>如何进行数据评审?</h1>
|
||
|
<p></p>
|
||
|
</div>
|