-
Notifications
You must be signed in to change notification settings - Fork 6
/
archive.php
executable file
·31 lines (30 loc) · 1.23 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
<?php $this->need('header.php'); ?>
<div id="content">
<ul class="abstract-list">
<?php while($this->next()): ?>
<li>
<div class="meta">
<div class="meta">
<h2 class="article-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h2>
<div class="article-date">
<a href="javascript:void(0);" class="extra-switch"><?php $this->date('F j, Y'); ?></a>
</div>
</div>
<div class="extra">
Tags: <?php $this->tags(' ', true, NULL); ?>
</div>
<div class="extra">
Categorias: <?php $this->category(' '); ?>
</div>
</div>
<div class="excerpt">
</div>
</li>
<?php endwhile; ?>
</ul>
<nav class="pagination">
<?php $this->pageLink('<span id="left-navigator">新</span>','prev'); ?>
<?php $this->pageLink('<span id="right-navigator">旧</span>','next'); ?>
</nav>
</div>
<?php $this->need('footer.php'); ?>