-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchive.php
More file actions
25 lines (22 loc) · 838 Bytes
/
Copy patharchive.php
File metadata and controls
25 lines (22 loc) · 838 Bytes
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
<?php $this->need('header.php'); ?>
<div class="container ofh">
<div class="archive">
<div class="post-list">
<ul>
<?php if ($this->have()): ?>
<?php while($this->next()): ?>
<li> [<?php $this->category(','); ?>] <a href="<?php $this->permalink() ?>"><?php $this->title() ?></a>
<?php if(isset($this->fields->copyright)){ ?>
<a href="<?php $this->fields->copyright(); ?>" target="_blank" class="title-share">转</a>
<?php }else{ ?><?php } ?>
<font color=#808080>(日期:<?php $this->date('Y-m-j'); ?> <?php _e('浏览:'); ?><?php $this->viewsNum(); ?>次)</font></li>
<?php endwhile; ?>
<?php else: ?>
<li><?php _e('没有找到内容'); ?></li>
<?php endif; ?>
</ul>
</div>
<?php $this->pageNav('上一页', '下一页', 5, '...'); ?>
</div>
</div>
<?php $this->need('footer.php'); ?>