-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
page.php
67 lines (40 loc) · 2.36 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/*
Template Name: 单栏页面
*/
get_header(); ?>
<?php setPostViews($post->ID); ?>
<article class="article reveal">
<div id="load">
<header class="article-header">
<span class="badge badge-pill badge-danger single-badge"><a href="<?php echo site_url() ?>" style="text-decoration:none"><i class="czs-read-l" style="margin-right:5px;"></i>博客页面</a></span>
<h2 class="single-h2" style="height: 50px;width: 100%;background: rgba(238, 238, 238, 0.81);color:rgba(238, 238, 238, 0.81)"></h2>
<div class="article-list-footer" style="height: 25px;background: rgb(246, 247, 248);width: 80%;margin-top: 15px;color:rgb(246, 247, 248)">
</div>
<div class="single-line"></div>
</header>
<div class="article-content">
<p style=" display: block; background: rgb(246, 247, 248); width: 100%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 90%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 95%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 90%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 90%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 95%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 90%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 100%; height: 20px; "></p>
<p style=" display: block; background: rgb(246, 247, 248); width: 100%; height: 20px; "></p>
</div>
<div class="article-comments" id="article-comments">
<?php if (comments_open() || get_comments_number()) :
comments_template();
endif;
?>
</div>
</div>
</article>
<script>
window.site_url = '<?php echo site_url() ?>';
window.post_id = <?php echo $post->ID; ?>;
</script>
<script type="text/javascript" src="<?php echo esc_url(get_template_directory_uri()); ?>/dist/js/page.js"></script>
<?php get_footer(); ?>