-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecho_log.php
More file actions
37 lines (32 loc) · 1.23 KB
/
echo_log.php
File metadata and controls
37 lines (32 loc) · 1.23 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
36
37
<?php
/**
* 阅读文章页面
*/
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
<div id="wrapper">
<main id="primary" class="main items post-content post-single" role="main" itemprop="mainContentOfPage">
<article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost">
<div class="entry-content" itemprop="mainEntity">
<?php echo $log_content; ?>
</div><!-- .entry-content -->
<div class="tags"><?php blog_tag($logid); ?></div>
</article>
<div class="adjacent-post"><?php neighbor_log($neighborLog); ?>
</div>
<!-- You can start editing here. -->
<h3 id="comments">
<?php if(empty($comnum)): ?>
既然没有吐槽,那就赶紧抢沙发吧!
<?php else: ?>
"<?php echo $comnum;?>"则回应给“<?php echo $log_title;?>”
<?php endif; ?>
</h3>
<?php
blog_comments($comments);
blog_comments_post($logid,$ckname,$ckmail,$ckurl,$verifyCode,$allow_remark);
?>
</main><!-- .main -->
<?php
include View::getView('footer');
?>