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('<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-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">
|
|
|
|
<h2>隐私政策</h2>
|
|
|
|
<?= $this->item['body']; ?>
|
2013-03-29 07:29:44 +00:00
|
|
|
</div>
|
2012-03-27 13:02:49 +00:00
|
|
|
</div>
|