-
Notifications
You must be signed in to change notification settings - Fork 23
/
page.php
33 lines (32 loc) · 1.07 KB
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* 关于
*
* @package custom
*
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php'); ?>
<?php $this->need('sidebar.php'); ?>
<div class="main-content" >
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<!-- 关于网站 -->
<h4 class="text-gray">关于网站</h4>
<div class="panel-body">
<div class="row">
<div class="col-sm-12">
<!--<blockquote>-->
<?php $this->content(); ?>
</blockquote>
</div>
<?php $this->need('comments.php'); ?>
</div>
</div>
</div>
</div>
</div>
<br>
<!-- Main Footer -->
<?php $this->need('footer.php'); ?>