-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.php
More file actions
27 lines (27 loc) · 1.03 KB
/
page.php
File metadata and controls
27 lines (27 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
<?php
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
<div id="main">
<div class="breadcrumbs">
<i class="icon-home"></i> <a href="<?php echo BLOG_URL;?>" title="返回首页">Home</a> > <?php getBlogSort($logid);?> > <?php echo $log_title; ?> <?php editflg($logid,$author); ?>
</div>
<div class="clear"></div>
<br>
<div class="mytitle" style="height:50px"><h2><i class="icon-star-empty"></i> <?php echo $log_title; ?></h2></div>
<div class="clear"></div>
<div class="post-content"><?php echo mycontent($log_content); ?></div>
<br><br>
<div id="comments">
<?php if($allow_remark=="y"):?>
<div class='commentsorping'><i class="icon-flask"></i> 已经有<?php echo $comnum;?>个回复</div>
<div class="clear"></div>
<?php endif;?>
<?php blog_comments($comments,$params); ?>
<?php blog_comments_post($logid,$ckname,$ckmail,$ckurl,$verifyCode,$allow_remark); ?>
</div>
<div style="clear:both;"></div>
</div>
<?php
include View::getView('side');
include View::getView('footer');
?>