-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecho_log.php
31 lines (31 loc) · 998 Bytes
/
echo_log.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
<?php
/**
* 阅读文章页面
*/
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
<div class="emlog">
<div class="echolog">
<!--section id="banner">
<h1><?php echo $log_title; ?></h1>
<div id="info">
<li><?php echo gmdate('Y-n-j', $date);?></li>
<li><?php echo $views; ?> 次阅读 <?php editflg($logid,$author); ?></li>
</div>
</section-->
<?php echo $log_content; ?>
<div class="tag"><?php blog_tag($logid); ?></div>
<?php doAction('down_log',$logid); ?>
<div class="adjacent-post">
<?php neighbor_log($neighborLog); ?>
</div>
<div class="comment-k">
<div class="comment-header"><b>Comments | <span><?php echo $comnum; ?> 条评论 </span></b></div>
<?php blog_comments($comments); ?>
<?php blog_comments_post($logid,$ckname,$ckmail,$ckurl,$verifyCode,$allow_remark); ?>
</div>
</div>
</div><!-- end emlog-->
<?php
include View::getView('footer');
?>