2009-03-06 03:20:46 +00:00
|
|
|
<?php
|
2013-05-07 02:03:50 +00:00
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle('使用条款和免责申明');
|
2009-03-06 03:20:46 +00:00
|
|
|
$this->headTitle()->setSeparator(' - ');
|
2013-05-07 02:03:50 +00:00
|
|
|
$this->headLink()->appendStylesheet('/css/about.css');
|
2009-03-06 03:20:46 +00:00
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/about">关于本站</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-05-07 02:03:50 +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 02:03:50 +00:00
|
|
|
<h2>使用条款和免责申明</h2>
|
|
|
|
<?= $this->item['body']; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|