19 lines
651 B
PHTML
Executable File
19 lines
651 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('<a href="/about">关于本站</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>
|