-
Notifications
You must be signed in to change notification settings - Fork 5
/
page.php
33 lines (33 loc) · 989 Bytes
/
page.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
<?php
/**
* 独立页面
*/
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
<section class="container">
<div class="content-wrap">
<div class="content container-tw">
<header class="article-header">
<h1 class="title-tw"><i class="fa fa-file-text-o"></i> <?php echo $log_title; ?></h1>
</header>
<section class="context">
<?php echo unCompress(ishascomment($log_content,$logid)); ?>
</section>
<!-- 评论开始 -->
<?php if($allow_remark == 'y'): ?>
<article class="span12" id="comments">
<div id="comments2" class="panel-comments">
<div id="respond" class="comment-respond">
<?php blog_comments_post($logid,$ckname,$ckmail,$ckurl,$verifyCode,$allow_remark); ?>
</div>
<?php blog_comments($comments); ?>
<!-- #respond -->
</div>
</article>
<?php endif;?>
<!-- 评论结束 -->
</div>
</div>
<?php include View::getView('side2');?>
</section>
<?php include View::getView('footer');?>