-
Notifications
You must be signed in to change notification settings - Fork 14
/
archive.php
executable file
·93 lines (87 loc) · 5.24 KB
/
archive.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<section class="content">
<div class="pad group">
<?php if($this->is('search')): ?>
<div class="notebox">
“<?php $this->archiveTitle(array(
'search' => _t('%s')
), '', ''); ?>”的搜索结果.
<?php if ( !$this->have() ): ?>
请尝试其他搜索词:
<?php endif; ?>
<div class="search-again">
<form method="post" action="" class="searchform themeform">
<div><input type="text" name="s" class="text" size="32" value="输入搜索词后回车搜索" onfocus="if(this.value=='输入搜索词后回车搜索')this.value='';" onblur="if(this.value=='')this.value='输入搜索词后回车搜索';" /></div>
</form>
</div>
</div>
<?php elseif($this->is('category') && $this->_description): ?>
<div class="notebox">
<?php echo $this->_description; ?>
</div>
<?php endif; ?>
<?php if ($this->have()): ?>
<?php while($this->next()): ?>
<article id="post-<?php $this->cid() ?>" class="group post">
<div class="post-inner post-hover">
<div class="post-date">
<div class="post-date-day">
<div class="format-box"><?php $this->date('D'); ?></div>
<?php $this->day() ?>
</div>
<div class="post-date-month"><a href="<?php $this->options->siteUrl(); ?><?php $this->year() ?>/<?php $this->month(); ?>/" title="<?php echo $this->year.'年'.$this->month.'月'; ?>"><?php $this->month() ?></a></div>
<div class="post-date-year"><a href="<?php $this->options->siteUrl(); ?><?php $this->year() ?>/" title="<?php echo $this->year.'年'; ?>"><?php $this->year() ?></a></div>
</div>
<div class="post-comments">
<?php if($this->options->activeViews): ?>
<a href="<?php $this->permalink() ?>" title="浏览量"><span><i class="fa fa-eye"></i><?php echo SlantedExtend_Plugin::theViews(NULL,NULL,0); ?></span></a>
<?php endif; ?>
<a href="<?php $this->permalink() ?>#comments" title="评论数"><span><i class="fa fa-comments-o"></i><?php $this->commentsNum() ?></span></a>
</div>
<?php if ( $this->options->isExcerpt == '1' && $this->fields->thumbUrl ): ?>
<div class="post-thumbnail small">
<a href="<?php $this->permalink(); ?>" title="<?php $this->title(); ?>">
<img width="320" height="320" sizes="(max-width: 320px) 100vw, 320px" alt="<?php $this->title(); ?>" class="attachment-thumb-list size-thumb-list wp-post-image" src="<?php $this->fields->thumbUrl(); ?>">
</a>
</div><!--/.post-thumbnail-->
<?php endif; ?>
<h2 class="post-title">
<a href="<?php $this->permalink(); ?>" rel="bookmark" title="<?php $this->title(); ?>"><?php $this->title(); ?></a>
<?php if($this->authorId == $this->user->uid): ?> <a href="<?php $this->options->adminUrl(); ?>write-post.php?cid=<?php echo $this->cid;?>" target="_blank" style="color: #00b2d7; font-size: 14px; font-weight: 400;">编辑</a><?php endif; ?>
</h2><!--/.post-title-->
<div class="entry excerpt">
<?php if($this->options->isExcerpt == '1'): ?>
<?php $this->excerpt($this->options->excerptLength); ?>
<?php else: ?>
<?php $this->content(); ?>
<?php endif; ?>
</div><!--/.entry-->
<a title="<?php $this->title(); ?>" href="<?php $this->permalink(); ?>" class="more-link">- 阅读全文 -</a>
</div><!--/.post-inner-->
</article><!--/.post-->
<?php endwhile; ?>
<?php else: ?>
<article class="post">
<h2 class="post-title"><?php _e('没有找到内容'); ?></h2>
</article>
<?php endif; ?>
<?php if(ceil($this->getTotal() / $this->parameter->pageSize)>1): ?>
<nav class="pagination group">
<div class="page-navigator">
<?php if(ceil($this->getTotal() / $this->parameter->pageSize)!=$this->request->page): ?>
<span class="pages">更多内容请翻页</span>
<?php
endif;
$this->pageNav('«', '»',5,'...',array(
'wrapTag' => 'div',
'wrapClass' => '',
'itemTag' => '',
'textTag' => 'a',
'currentClass' => 'current',
'prevClass' => 'previouspostslink',
'nextClass' => 'nextpostslink'
)); ?>
</div> </nav>
<?php endif; ?>
<?php $this->need('footer.php'); ?>