forked from ncccode/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
30 lines (26 loc) · 1005 Bytes
/
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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="layui-container">
<div class="layui-row layui-col-space15 main">
<div class="map">
<span class="layui-breadcrumb">
<a href="<?php $this->options->siteUrl(); ?>"><?php _e('首页'); ?></a>
<?php $this->category(','); ?>
<a><cite><?php $this->title() ?></cite></a>
</span>
</div>
<div class="layui-col-md9 layui-col-lg9">
<div class="title-article text-center">
<h1><?php $this->title() ?></h1>
</div>
<div class="text" itemprop="articleBody">
<?php $this->content(); ?>
</div>
<div class="comment-text layui-form">
<?php $this->need('comments.php'); ?>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
</div>
</div>
<?php $this->need('footer.php'); ?>