-
Notifications
You must be signed in to change notification settings - Fork 34
/
archive.php
34 lines (31 loc) · 1.42 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
<?php $this->need('header.php'); ?>
<div role="main" id="main">
<div class="content">
<?php if ($this->have()): ?>
<?php while($this->next()): ?>
<article role="article" class="post">
<h1 class="entry-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<div class="entry-content">
<?php $this->content('阅读剩余部分...'); ?>
</div>
<div class="entry-data">
<a href="<?php $this->permalink() ?>" class="more">// 查看全文</a>
<div class="time">
<span class="year"><?php $this->date('Y'); ?></span>
<span class="month"><?php $this->date('n'); ?>月</span>
<span class="day"><?php $this->date('d'); ?></span>
</div>
</div>
</article>
<?php endwhile; ?>
<?php else: ?>
<article role="article" class="post">
<h1 class="entry-title"><?php _e('没有找到内容'); ?></h1>
</article>
<?php endif; ?>
</div><!--=E .content -->
<nav class="pagination">
<?php $this->pageNav('<', '>'); ?>
</nav><!--=E .pagination -->
</div><!--=E #main -->
<?php $this->need('footer.php'); ?>