-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.php
More file actions
executable file
·35 lines (28 loc) · 1.03 KB
/
post.php
File metadata and controls
executable file
·35 lines (28 loc) · 1.03 KB
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
<?php include('header.php');?>
<div class="post">
<h3 class="title"><a href="<?php $this->permalink() ?>" rel="bookmark"><?php $this->title() ?></a></h3>
<div class="content">
<?php $this->content('继续阅读 »'); ?>
<div class="fixed"></div>
</div>
<div class="meta">
<div class="alignleft floatleft">
<div class="date"><?php $this->date('F jS, Y g:i A'); ?></div>
<div class="post_info"><?php $this->category(','); ?></div>
<div class="post_info"><?php $this->tags(', ', true, '没有'); ?></div>
</div>
<div class="alignright floatright">
<div><a href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('No Comments', '1 Comments', '%d Comments'); ?></a></div>
<div><?php $this->author(); ?></div>
</div>
<div class="fixed"></div>
</div>
</div>
<?php include('comments.php');?>
</div>
<!-- main END -->
<?php include('sidebar.php'); ?>
<div class="fixed"></div>
</div>
<!-- content END -->
<?php include('footer.php'); ?>