13 lines
408 B
PHTML
13 lines
408 B
PHTML
|
<?php
|
||
|
$config = Zend_Registry::get('config');
|
||
|
$this->headTitle($config->title->site);
|
||
|
$this->headTitle($config->title->review);
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('元数据评审');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
?>
|
||
|
<div>
|
||
|
<?php echo $this->message;?>
|
||
|
</div>
|