-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpage.php
More file actions
17 lines (16 loc) · 767 Bytes
/
page.php
File metadata and controls
17 lines (16 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
// 评论Ajax翻页 by 牧风
if(isset($_GET["action"]) && $_GET["action"] == "ajax_comments"){// Ajax请求的头数据
$this->need('comments.php');
}else{
if(strpos($_SERVER["PHP_SELF"],"themes")) header('Location:/');
$this->need('header.php');
?>
<div id="title"><a title="<?php $this->author() ?>" href="<?php $this->author->permalink(); ?>" target="_blank"><?php $this->author->gravatar(48); ?></a>
<h1><?php $this->title() ?></h1>
<span class="desc"><?php $this->date(); ?> / <?php $this->views(); ?> 次围观 / <?php $this->commentsNum('快抢沙发', '沙发被抢', '%d 条评论'); ?></span>
</div>
<?php $this->content(''); ?>
<?php $this->need('comments.php'); ?>
<?php $this->need('footer.php'); ?>
<?php }?>