forked from crazystear/Practice01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-status.php
49 lines (49 loc) · 2.43 KB
/
page-status.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
<?php
/**
* status
*
* @package custom
*/
?>
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<div class="site-wrap">
<div class="flex-left">
<div class="left-side">
<div class="inside">
<div id="content" class="content">
<div class="post_content main2">
<div class="pcontent">
<h1 class="post_entry"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<p class="post_meta">
<!-- <span class="head_meta">Category : <?php $this->category(',', false); ?></span> -->
<span class="head_meta">Views : <?php get_post_view($this) ?></span>
<span class="head_meta">Comments : <?php $this->commentsNum('0','1','%d'); ?></span>
<span>Posted on : <time style="font-size: 12px;" datetime="<?php $this->date('Y-m-d'); ?>"><?php $this->date(); ?></time></span>
</p>
<div class="post_body">
<?php $this->content(); ?>
<?php if(!($this->fields->aplayerurl == '' && $this->fields->aplayerthumb == '')): ?>
<?php $this->need('aplayer.php'); ?>
<?php endif; ?>
</div>
<p class="post_tag">
<span class="head_meta" style="border: none;">Posted by : <?php $this->author(); ?></span>
<!-- <span>Tags : <?php $this->tags(' , ', true, '此页面未设置标签'); ?></span> -->
</p>
<?php include("copyright.php"); ?>
<div class="post_comments">
<div class="comments_body">
<?php $this->need('comments.php'); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>