-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
executable file
·48 lines (45 loc) · 1.21 KB
/
index.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
<?php
/**
* 这是 Viosey 开发的极简Typecho主题
*
* @package Theme.Carbon
* @author viosey
* @version 1.0.6
* @link https://viosey.com
*/
$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 class="excerpt">
<p>
<!-- $this->content('Continue Reading...'); -->
<?php $this->excerpt(70, '...'); ?>
</p>
</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') ?>