-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-archivers.php
33 lines (33 loc) · 1.35 KB
/
page-archivers.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!');
}
?>
<style type="text/css">
#container {width: 100%;padding:0;}
</style>
<div id="content">
<div class="page">
<article role="article">
<header>
<h2 class="post-name"><i class="fa fa-list-ol"></i> <?php echo $log_title; ?> - [<span class="toggler">展开归档</span>]</h2>
</header>
<address class="entry-meta">
<i class="fa fa-home"></i><a href="<?php echo BLOG_URL;?>" title="返回首页">首页</a> » <i class="fa fa-file-text-o"></i><?php echo $log_title; ?> » <i class="fa fa-clock-o"></i>
<?php mydate($date) ?>
</address>
<?php if($log_title=='归档'||$log_title=='文章归档'||$log_title=='Archiver'||$log_title=='Archivers'): ?>
<?php include View::getView('function/page-archives'); ?>
<?php else: ?>
<div class="post-context"><?php echo content($log_content,$logid); ?></div>
<?php endif;?>
</article>
<div id="comments">
<?php blog_comments_post($logid,$ckname,$ckmail,$ckurl,$verifyCode,$allow_remark); ?>
<?php if(empty($comnum)){ echo "";}else{echo"<h3><i class='fa fa-comments-o'></i>已有";echo $comnum;echo"条吐槽</h3>";} ?>
<?php blog_comments($comments,$params); ?>
</div>
</div>
</div>
<?php include View::getView('side'); ?>
<?php include View::getView('footer'); ?>