forked from iblh/typecho-theme-carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-archive.php
39 lines (33 loc) · 1.27 KB
/
page-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
<?php
/**
* 归档模板
*
* @package custom
*/
$this->need('header.php'); ?>
<div id="content">
<div class="meta">
<h2 class="article-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h2>
</div>
<div class="meta">
<div class="post-content pl18" itemprop="articleBody">
<?php $this->widget('Widget_Contents_Post_Recent','pageSize=10000')->to($recent); ?>
<?php while($recent->next()):?>
<h2 class="article-title"><a href="<?php $recent->permalink() ?>"><?php $recent->title() ?></a></h2>
<div class="article-date">
<a href="javascript:void(0);" class="extra-switch"><?php $recent->date('F j, Y'); ?></a>
</div>
<div class="extra">
Tags: <?php $recent->tags(' ', true, NULL); ?>
</div>
<div class="extra">
Categorias: <?php $recent->category(' '); ?>
</div>
<?php endwhile; ?>
</div>
</div>
<div class="article-content">
<?php $this->content(); ?>
</div>
</div>
<?php $this->need('footer.php'); ?>