2013-03-29 07:29:44 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle('关于我们');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/css/about.css');
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('关于我们');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
2018-02-11 04:19:40 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="col-md-3 col-sm-12">
|
2013-03-29 07:29:44 +00:00
|
|
|
<?= $this->partial('about/navi.phtml'); ?>
|
|
|
|
</div>
|
2018-02-11 04:19:40 +00:00
|
|
|
<div class="col-md-9 col-sm-12">
|
2013-05-07 01:45:49 +00:00
|
|
|
<h2>中心简介</h2>
|
2013-05-03 12:59:04 +00:00
|
|
|
<?= $this->item['body']; ?>
|
2013-03-29 07:29:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|