-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pages.php
52 lines (37 loc) · 1.48 KB
/
pages.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php require 'func/header.php' ?>
<link rel="stylesheet" href="md.css">
<script src="https://cdn.bootcss.com/blueimp-md5/2.10.0/js/md5.min.js"></script>
<div class="reading-bar"></div>
<div class="blog-container" style="width:67%" v-loading="!loading">
<el-row :gutter="20">
<el-col :span="7">
<?php require 'func/single-sidebar.php'; ?>
<el-card shadow="hover" class="index-div">
<div style="padding:0px 25px">
<h2 style="font-weight: 600;margin: 0px;text-align:center">页面引索</h4>
</div>
<ul id="article-index" class="index-ul">
</ul>
</el-card>
</el-col>
<el-col :span="17">
<el-card shadow="never" style="
padding: 20px 40px;
margin-bottom:20px
" class="wap-content">
<h1 v-html="title" class="post-h1"></h1>
<p class="post-p">
<em>页面</em>
<em>{{ date }}</em>
</p>
<div v-html="content" class="post-content markdown-body" id="content"></div>
<?php require 'func/comments.php'; ?>
</el-card>
</el-col>
</el-row>
</div>
</div>
<?php require 'func/footer.php'; ?>
<script src="js/pages.js" type="text/javascript"></script>
</body>
</html>