18 lines
567 B
PHTML
Executable File
18 lines
567 B
PHTML
Executable File
<?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(' > ');
|
|
?>
|
|
<div class="container">
|
|
<div class="col-md-3 col-sm-12">
|
|
<?= $this->partial('about/navi.phtml'); ?>
|
|
</div>
|
|
<div class="col-md-9 col-sm-12">
|
|
<h2>中心简介</h2>
|
|
<?= $this->item['body']; ?>
|
|
</div>
|
|
</div>
|