-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpost.php
44 lines (37 loc) · 1.82 KB
/
post.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
<?php $this->need('header.php'); ?>
<div id="page-wrap">
<div id="main-content" style="display: block;"><div id="guts">
<div class="container">
<div class="wrapper light-blue-text text-darken-3">
<div class="post">
<article class="row bounceInUp wow">
<div class="col s12">
<div class="card">
<div class="card-content black-text">
<span class="card-title hide-on-large-only"><a href="<?php $this->permalink() ?>"><?php $this->title();?></a></span>
<div class="post-content" ><?php $this->content(); ?></div>
</div>
<div class="card-action">
<div class="col s12">
<ul class="tabs light-blue z-depth-1" style="width: 100%;">
<li class="waves-effect tab col s3 light-blue darken-1 btn"><?php _e('作者: '); ?><?php $this->author(); ?></li>
<li class="waves-effect tab col s3 light-blue darken-1 btn"><time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"><?php $this->date('F j, Y'); ?></time></li>
<li class="waves-effect tab col s6 light-blue darken-1 btn"><?php $this->category('✔'); ?></li>
</ul>
</div>
</div>
</div>
</article>
<div class="hide-on-med-and-down">
<button class="brown darken-3 white-text text-darken-3 waves-effect waves-light-blue waves-light btn bounceInLeft wow">上一篇: <?php $this->thePrev('%s','没有了'); ?></button>
<button class="brown darken-3 white-text text-darken-3 waves-effect waves-light-blue waves-light btn right bounceInRight wow">下一篇: <?php $this->theNext('%s','没有了'); ?></button>
</div>
</div>
<?php $this->need('comments.php'); ?>
</div>
</div>
</div>
</div>
</div></div>
</div>
<?php $this->need('footer.php'); ?>